
在网络上找到的这个效果,核心代码:
1. <script type="text/javascript">
2. function autoScroll(obj) {
3.
4. $(obj).find("ul").animate({
5.
6. marginTop: "-39px"
7.
8. },
9. 500,
10. function() {
11.
12. $(this).css({
13. marginTop: "0px"
14. }).find("li:first").appendTo(this);
15.
16. })
17.
18. }
19.
20. $(function() {
21.
22. setInterval('autoScroll(".maquee")', 3000);
23.
24. setInterval('autoScroll(".apple")', 2000);
25.
26. })
27. </script>
演示Demo