欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

JQuery循环滚动图片代码_jquery

程序员文章站 2022-05-17 11:32:29
...
复制代码 代码如下:

function refresh() {
var s = $(".box1");
if (!s.is(":animated"))
$(".box1").animate({ marginLeft: "0px" }, "slow", function () {
$('.box1 img:first').before($('.box1 img:last'));
$(".box1").css("margin-left", "-206px");
});
}
JQuery循环滚动图片代码_jqueryJQuery循环滚动图片代码_jqueryJQuery循环滚动图片代码_jqueryJQuery循环滚动图片代码_jquery


.box1
{
width:1200px;
overflow:hidden;
margin-left:-206px;
}
.frame
{
width:620px;
overflow:hidden;
}

图片宽度默认206px,没设定
相关标签: 循环滚动