jQuery(1.3.2) 7行代码搞定跟随屏幕滚动的层

复制代码 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jquery.text-effects</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style>
*{
    margin:0;
    padding:0;
}
#test{
    position:absolute;
    top:10px;
    right:10px;
    width:130px;
    height:60px;
    background:#555;
    color:#fff;
    font-size:13px;
}
</style>
<script src="http://img.jb51.NET/jslib/jquery/jquery-1.3.2.min.js" type="text/Javascript"></script>
<script language="Javascript">
$(document).ready(function(){
    var menuYloc = $("#test").offset().top;
    $(window).scroll(function (){
        var offsetTop = menuYloc + $(window).scrollTop() +"px";
        $("#test").animate({top : offsetTop },{ duration:600 , queue:false });
    });
});
</script>
</head>
<body>
    <h1>7行代码的跟随屏幕滚动层.</h1>
    <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
    <div id="test">Dev By CssRain.cn<br/>Test ie6+,firefox3.0</div>
    <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
    <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
</body>
</html>

JavaScript技术jQuery(1.3.2) 7行代码搞定跟随屏幕滚动的层,转载需保留来源!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。