时间:2021-07-01 10:21:17 帮助过:2人阅读
<script type="text/javascript">
$(function() {
$li1 = $(".apply_nav .apply_array");
$window1 = $(".apply .apply_w");
$left1 = $(".apply .img_l");
$right1 = $(".apply .img_r");
$window1.css("width", $li1.length*166);
var lc1 = 0;
var rc1 = $li1.length-5;
$left1.click(function() {
if (lc1 < 1) {
alert("已经是第一张图片");
return;
}
lc1--;
rc1++;
$window1.animate({left:'+=166px'}, 1000);
});
$right1.click(function() {
if (rc1 < 1) {
alert("已经是最后一张图片");
return;
}
lc1++;
rc1--;
$window1.animate({left:'-=166px'}, 1000);
});
})
</script>
运行结果如图所示:
在线演示:http://demo.jb51.net/js/2011/jqueryanimate/index.html
源码下载:点击下载