頁面廣告飄窗


HTML結構如下

<div class="fafa" style="width: 160px;height: 160px;background: #acf;position: fixed;z-index: 999;"></div>

  js邏輯也非常簡單,就是移動left和top的值,代碼如下

!function($dom){
	var winWidth = window.innerWidth;                    
	var winHeight = window.innerHeight;
	window.onresize = function(){
		winWidth = window.innerWidth;                    
		winHeight = window.innerHeight;
	}
	var $left = 0,$top = 0,a = 1,b = 1,speed = 2;
	function goFun(posit,speed){
		return posit + speed;
	}
	var t = setInterval(function(){
		$left = goFun($left,speed*a)
		if( $left >= (winWidth-$dom.offsetWidth)){
			a = -1;
		}else if($left <= 0){
			a = 1;
		}
		$top = goFun($top,speed*b)
		if( $top >= (winHeight-$dom.offsetHeight)){
			b = -1;
		}else if($top <= 0){
			b = 1;
		}
		$dom.style.cssText += "left:"+$left+"px;top:"+$top+"px";
	},20)
}(document.getElementsByClassName('fafa')[0]);

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM