其实这个问题,已经困扰我很久很久。
就是切换浏览器标签之后,再等几十秒的时间切换回来setInterval就乱了阵,过一会又正常了!IE浏览器就没有这种奇怪的现象!
在上一篇文章:
就有这种效果,不过影响不大。Demo的影响就大了!
网上也有人出现过这样的问题看下面的帖子地址:
讨论的人很多,但没给出答案来。
怎么想都想不明白!
今天,突然茅塞顿开,可能是线程的概念,但是具体原因还是不明白,希望有人了解其原应告知,非常感激!
Demo 中黑色的Div是不受浏览器标签切换影响的
而红色的Div会受到影响。
HTML:
1 < div id ="move" style ="position: absolute; width: 100px; height: 100px; top: 0pt; left: 0pt; background: none repeat scroll 0% 0% #000000; z-index: 999; color: #ffffff;" >我不受浏览器标签切换影响!Hoooo </ div > 2 < div id ="move2" style ="position: absolute; width: 100px; height: 100px; top: 0pt; left: 0pt; background: none repeat scroll 0% 0% red; z-index: 999; color: #ffffff;" >我受浏览器标签切换影响!5555 </ div >
javascript:
1 ( function(){ 2 var elem = Meng.getId('move'), 3 elem2 = Meng.getId('move2'), 4 pos = Meng.getElemViewPosition(elem), 5 view = Meng.getBrowserView(), 6 // 灰块运动函数 7 move = function(){ 8 var t1 = Meng.animate(elem,{top:0,left:0},{top:view.height-100,left:view.width-100},3000, function(){ 9 var t2 = Meng.animate(elem,{left:view.width-100},{left:100-view.width},3000, function(){ 10 var t3 = Meng.animate(elem,{top:view.height-100},{top:100-view.height},3000, function(){ 11 move(); // 确定t3运动完后,我再回调move()函数。
12 });
13 });14 });15 };16 move();17 // 红块运动函数18 Meng.setStyle(elem2,{top:0,left:(view.width-100)+'px'});19 var move2 = function(){ 20 var t1 = Meng.animate(elem2,{top:0,left:view.width-100},{top:view.height-100,left:100-view.width},3000,function(){ 21 var t2 = Meng.animate(elem2,{top:view.height-100},{top:100-view.height},3000,function(){ 22 var t3 = Meng.animate(elem2,{left:0},{left:view.width-100},3000,function(){ 23 });24 });25 });26 };27 move2();28 setInterval(function(){move2();},9050); // 红块运动函数
29 })();
我不受浏览器标签切换影响!Hoooo
我受浏览器标签切换影响!5555