关于图片轮播为什么还是不能无限轮播。js写的没有错啊
<script type="text/javascript">
window.onload=function(){
var container=document.getElementById('container');
var list=document.getElementById('list');
var buttons=document.getElementById('buttons').getElementsByTagName('span');
var zuo=document.getElementById('zuo');
var you=document.getElementById('you');
zuo.onclick=function(){
list.style.left=parseInt(list.style.left)+730+'px';
if (list.style.left>-730) {
list.style.left=-2920+'px';
}
}
you.onclick=function(){
list.style.left=parseInt(list.style.left)-730+'px';
if (list.style.left |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
你用像素Px来控制的话,你试一下,让它左右到最大值的时候,再次点击,回到最开始的值 |
|
|
|
|