我尝试一次制作slide up
和slide down
div。
我想要第div slide down
一个隐藏的下一个div slide up
我想让这些元素在动画时重叠
jQuery
$(document).ready(function () {
$('.plus').click(function () {
$('header h1').animate({ 'margin-top': '999px', opacity: 'toggle' }, 1500);
$('header h2').animate({ 'margin-top': '0px', opacity: 'show' }, 1200);
});
$('.minus').click(function () {
$('header h2').hide('slow');
$('header h1').show('slow');
});
});
感谢您的任何想法!