Cool Dancing Image Java Script Hack for Website (Hacks)
Try this, the crazy JavaScript code below. Copy it to your
clipboard and paste it in the address bar in this browser window. The
images should dance around the screen. You should be able to paste this
into the address bar on any web page and see the images dance around.
Step 1: Go to an Image rich page (eg:search for flowers in Google Images)
Step 2: Clear the address bar.
Step 3: Copy And paste this Javascript in address bar ->
Java Script1: Round and Round Dancing of Image
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);
Java Script2: Jumping of Image
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=100; x5=200; y5=50; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x3+x2)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);
Step 4: Hit enter.
Yaahhooo…!!! you can see the magic of Java script.
Your comment will be appreciated!!!
|