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

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

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下载
官方微信