$(function () { $(window).scroll(function () { if ($(window).scrollTop() > 200) { $(".list:eq(0)").delay("slow").show(); $("#wei").delay("fast").show(); } else { $(".list:eq(0)").delay("slow").hide(); $("#wei").delay("fast").hide(); } }); }); <style type="text/css"> *{margin: 0; padding: 0;} div{background: red; width: 100%; height: 3000px;} div.list{height: 100px; width: 100%; background: green; position: fixed; display:none; } div#wei{width: 20px;height: 100px; background: blue; position: fixed; top: 500px; left: 100px; display: none;} </style><body> <div> <div class="list"></div> <div id="wei"></div> </div></body></html>
3 回答
已采纳
习惯受伤
TA贡献885条经验 获得超1144个赞
//代码在这里 $(function () { $(window).scroll(function () { if ($(window).scrollTop() > 200) { $(".list:eq(0)").show(100,function(){ $("#wei").show(500); }); } else { $(".list:eq(0)").hide(100,function(){ $("#wei").hide(500); }); } }); });
添加回答
举报
0/150
提交
取消