我尝试结合一些这样的功能,但对我不起作用。
- 面板将显示 1 秒
- 面板向上滑动
- 幻灯片 Btn 将在很短的时间内离开视口
- 结束:在右侧位置滑动 Btn 显示
$(document).ready(function(){
$(".btn-slide").click(function(){
$("#panel").slideToggle("slow");
$(this).toggleClass("active"); return false;
});
$('#panel').html('This text will dissapear after 3 seconds.');
timeout = setTimeout(function () {
$('#panel').animate({marginTop: '-450px'}, 500);
},
function aha() {
$('.btn-slide').animate({marginTop:'-40px'}, 350);
$('.btn-slide').animate({marginTop:'470px'}, 350);
}), 1000)
});
我需要你的帮助,拜托。