标签:
1 <script type="text/javascript"> 2 3 $(document).ready(function () { 4 setInterval(‘AutoScroll("#Div_contain_ul")‘, 1000) //1000为整个过程刷新时间; 5 }); 6 7 8 function AutoScroll(obj) { 9 $(obj).find("ul:first").animate({ marginTop: "-25px" }, 800, function () //-25px为消息向上滚动的距离,800为消息向上滚动的时间; 10 { 11 $(this).css({ marginTop: "0px" }).find("li:first").appendTo(this); //0px为消息向上滚动后的margin-top值 12 }); 13 } 14 </script>
自己做网站正好用到,所有消息是放在一个Div层里的ul中,每条消息是放在ul的li中。li中可根据自己需求加入一些<a>,<image>,<div>。可作为前端测试使用。
标签:
原文地址:http://www.cnblogs.com/lovecsharp094/p/5481629.html