轮播图
时间:2021-03-08 13:34:42
收藏:0
阅读:0
var index=1;
left.onclick=function () {
index++
if (index>3) {
index=0
}
one.style.left=-index*800+"px"
}
right.onclick=function () {
index--
if (index<0) {
index=3
}
one.style.left=-index*800+"px"
}
评论(0)