问答详情
源自:6-1 动画函数

小图标与图片滚动不相符的解决办法

next.onclick; prev.onclick函数在一开始执行先判断是否有animated为true(也就是图片还在滚动)的情况,如果有这个情况就不做任何处理;代码如下:

next.onclick=function(){

    if(animated){

          return; }

         if(index==5){

         index=1;

         }else{

          index +=1; }

         showButtons();

        animate(-600); }

小图标的问题一样:在for循环里animate()方法执行前面加上

        if(animated){

        return;}

提问者:大董你能行 2016-11-04 12:15

个回答

  • 一朵大白天
    2016-11-14 16:50:09
    已采纳

    nice