在上一篇文章: 覺得豬八戒網左下角的文字滾動,效果不錯,自己摸索了一下,以自己的方法實現了!
就有這種效果,不過影響不大。Demo的影響就大了!
網上也有人出現過這樣的問題看下面的帖子地址:
firefox 6下 setInterval的一個問題
討論的人很多,但沒給出答案來。
怎麼想都想不明白!
今天,突然茅塞頓開,可能是線程的概念,但是具體原因還是不明白,希望有人了解其原應告知,非常感激!
Demo 中黑色的Div是不受浏覽器標簽切換影響的
而紅色的Div會受到影響。
HTML:
復制代碼 代碼如下:
<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>
<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:
復制代碼 代碼如下:
(function(){
var elem = Meng.getId('move'),
elem2 = Meng.getId('move2'),
pos = Meng.getElemViewPosition(elem),
view = Meng.getBrowserView(),
//灰塊運動函數
move = function(){
var t1 = Meng.animate(elem,{top:0,left:0},{top:view.height-100,left:view.width-100},3000,function(){
var t2 = Meng.animate(elem,{left:view.width-100},{left:100-view.width},3000,function(){
var t3 = Meng.animate(elem,{top:view.height-100},{top:100-view.height},3000,function(){
move();//確定t3運動完後,我再回調move()函數。
});
});
});
};
move();
// 紅塊運動函數
Meng.setStyle(elem2,{top:0,left:(view.width-100)+'px'});
var move2 = function(){
var t1 = Meng.animate(elem2,{top:0,left:view.width-100},{top:view.height-100,left:100-view.width},3000,function(){
var t2 = Meng.animate(elem2,{top:view.height-100},{top:100-view.height},3000,function(){
var t3 = Meng.animate(elem2,{left:0},{left:view.width-100},3000,function(){
});
});
});
};
move2();
setInterval(function(){move2();},9050);
// 紅塊運動函數
})();