JavaScript

JavaScript Fun – Swirling Images Around

I’m so bored here and can’t make any codes. Suddenly my friend sends me some trick. When completed, it swirls all images around the page. So I tried it. First, it requires that you use Google Images search, then paste some JavaScript on the browser’s address bar.

smart-cat

It works! However, I tried it on other website like yahoo or bing but unfortunately it does not work. So I searched about it and find another version of the code.

Here is it:

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()',50); void(0); 

Copy the code, then go to your browsers address bar. Paste the code to the address bar and press enter!

Have fun!

From here: http://ubuntuforums.org/archive/index.php/t-467523.html

Leave a reply

Your email address will not be published. Required fields are marked *