为了账号安全,请及时绑定邮箱和手机立即绑定

为什么执行这段代码中间会一闪呢?

var imgUrl = ['3.png','1.png','3.png','2.png','3.png','1.png','4.png','2.png'];

var ele = document.getElementById('animal');

animation(ele,imgUrl);

function animation(ele,imgUrl) {

   ele.style.backgroundRepeat = 'no-repeat';
   var index = 0;//标注在数组中的位置

   function run() {
       ele.style.backgroundImage = 'url('+imgUrl[index]+')';
       index++;
       if (index >= imgUrl.length) {
           index = 0;
       }
       setTimeout(run,200);
   }
   run();
}

正在回答

举报

0/150
提交
取消

为什么执行这段代码中间会一闪呢?

我要回答 关注问题
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号