js代码
<script src="js/jquery-1.8.3.min.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript" src="js/DatePicker/WdatePicker.js"></script> <script type="text/javascript" src="js/DatePicker/extraDate.js"></script> <script> //运动的水波纹 function rollTwo(){ $(".line_water").animate({marginLeft:"-297px"},5000,"linear",function(){ $(this).css({marginLeft:"0px"}); $(this).find("img:first").remove().clone(true).appendTo($(this)); }) } rollTwo() var startRollTwo=setInterval(rollTwo,40); function rollOne(){ $(".line_water2").animate({marginLeft:"-297px"},5000,"linear",function(){ $(this).css({marginLeft:"0px"}); $(this).find("img:first").remove().clone(true).appendTo($(this)); }) } rollOne() var startRollTwo=setInterval(rollOne,20); </script>