/////////////////////////////////////////////////////////////////// // BB: AJC Multimedia // // 16-08-2007 FlyPopFNC // /////////////////////////////////////////////////////////////////// FlyPopFNC=function(){ var innerPop; var cx;//sup gauche var cy;//sup droit var vts; var divid; var nx; var ny; var inc; } FlyPopFNC.prototype={ createPop:function(innerPop,start_left,start_top){ if(typeof(start_left)=="undefined")start_left=0; if(typeof(start_top)=="undefined")start_top=0; this.inc=1; this.innerPop=innerPop;this.vts=30; this.cx=start_left;this.cy=start_top; // Depart: haut gauche this.nx=1;this.ny=1; //Direction: vers le bas droit this.divid="newFlyPop_"+Math.random(); var divEle="
"+this.innerPop+"
"; document.write(divEle); this.__move(); }, __move:function(){ var isIE=false; isIE=(navigator.userAgent.toLowerCase().indexOf('msie')>=0)?true:false; var thisdiv=document.getElementById(this.divid); thisdiv.style.left=this.cx+"px";thisdiv.style.top=this.cy+"px"; var largeur =isIE ? document.body.offsetWidth : window.innerWidth; var hauteur =isIE ? document.body.offsetHeight : window.innerHeight; var bas =isIE ? thisdiv.offsetHeight : thisdiv.clientHeight; var droite =isIE ? thisdiv.offsetWidth : thisdiv.clientWidth; if((this.cy+bas)>=hauteur)this.ny=-1; if((this.cx+droite)>=largeur)this.nx=-1; if(this.cy<=0)this.ny=1; if(this.cx<=0)this.nx=1; this.cx+=(this.nx*this.inc); this.cy+=(this.ny*this.inc); if(document.getElementById('BB_debug')){ var dbg=document.getElementById('BB_debug'); dbg.innerHTML="CurX:"+this.cx+"    CurY:"+this.cy+"
Bas:"+bas+"    Droite:"+droite+"
"; dbg.innerHTML+="Largeur:"+largeur+"    Hauteur:"+hauteur+"
IncrementX:"+this.nx+"    IncrementY:"+this.ny; } var self=this; setTimeout(function(){self.__move()},this.vts); } } var flypop=new FlyPopFNC(); flypop.createPop('Gagne du Cash');