$(function(){ //卷帘广告,1000是卷帘速度,10000是停留时间 $("#toptip").slideDown(1000, function(){ var dom = $(this); setTimeout(function() { dom.slideUp(1000); },8000); }); }); $(document).ready(function(){ $(".close").mousemove(function(){$(this).css("background-position","0 -50px")}); $(".close").mouseleave(function(){$(this).css("background-position","0 0")}); }); ------------------------------------------------------------------------------------------