模拟新浪微博首页滚动效果

来源:互联网 发布:windows脚本文件 编辑:程序博客网 时间:2024/05/02 23:52
<!DOCTYPEhtml PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<scripttype="text/javascript"src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<metahttp-equiv="Content-Type"content="text/html; charset=utf-8" />
<title>无标题文档</title>
<scriptlanguage="javascript">
$(function(){
        var scrtime;
         $("#con").hover(function(){
                clearInterval(scrtime);
         
        },function(){
         
        scrtime = setInterval(function(){
                var $ul = $("#con ul");
                var liHeight = $ul.find("li:last").height();
                $ul.animate({marginTop : liHeight+40 +"px"},1000,function(){
                 
                $ul.find("li:last").prependTo($ul)
                $ul.find("li:first").hide();
                $ul.css({marginTop:0});
                $ul.find("li:first").fadeIn(1000);
                });       
        },3000);
         
        }).trigger("mouseleave");
         
         
});
</script>
<styletype="text/css">
<!--
*{ margin:0; padding:0;}
ul,li{ list-style-type:none;}
body{ font-size:13px; background-color:#999999;}
#con{ width:700px; height:400px; margin:10px auto; position:relative; border:1px #666 solid; background-color:#FFFFFF;
overflow:hidden;}
#con ul{ position:absolute; margin:10px; top:0; left:0; padding:0;}
#con ul li{ width:100%;  border-bottom:1px #333333 dotted; padding:20px 0; overflow:hidden; }
#con ul li a{ float:left;  border:1px #333333 solid; padding:2px;}
#con ul li p{ margin-left:68px;line-height:1.5;  padding:10px;}
 -->
 </style>
<body>
<divid="con">
  <ul>
    <li> <ahref="#"><imgsrc="http://tp3.sinaimg.cn/1696357270/50/1282628065/1"/></a>
        <pclass="vright">第一最好不相见,如此便可不相恋。第二最好不相知,如此便可不相</p>
    </li>
    <li> <ahref="#"><imgsrc="http://tp3.sinaimg.cn/1696357270/50/1282628065/1"/></a>
        <pclass="vright">第一最好不相见,如此便可不相恋。第二
         </p>
    </li>
    <li> <ahref="#"><imgsrc="http://tp3.sinaimg.cn/1696357270/50/1282628065/1"/></a>
        <pclass="vright">第一最好不相见,教科书所说教科书所说的思想道德教育在现今社会一点也体现不出,先进的特色社会主义啊,你何时才能拯救现今社会啊的思想教科书所说的思想道德教育在现今社会一点也体现不出,先进的特色社会主义啊,你何时 </p>
    </li>
    <li> <ahref="#"><imgsrc="http://tp3.sinaimg.cn/1696357270/50/1282628065/1"/></a>
        <pclass="vright">第一最好不相见,如此便可不相恋。第二最好不相知,如此便可生死作相思。abc </p>
    </li>
  </ul>
</div>
</body>
</html>
0 0
原创粉丝点击