Posted in Javascript onDecember 11, 2012
jQuery编程实现一组由8幅图组成的图片,进入网页初始时显示前面4张,然后自动向左滚动,直到屏幕显示的是后4张时停止滚动。
下面是jQuery代码:
$(document).ready(function() { var $images = $('#images img'); var imgs = $images.length; var next_img; for(var i=0;i<imgs;i++) { next_img=$images.eq(i); scroll(next_img); } }); //创建一个滚动的函数,使用animate函数自定义动画 function scroll(image) { image.animate({'left':-485},5000); }; </script>
jQuery使用数组编写图片无缝向左滚动
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@