How to Make Images Dance?

31 December 2009

This isn't a hack, isn't illegal and only affects your own computer.


With the use of javascript, you could just put it in your address bar to run the code and make your images dance in any way you want! This is for fun purposes only.


Steps
1.
Go to a website preferably with lots of images.
2. Wait until it fully loads.
3. Copy and paste the following code into the address bar.



Code:

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.images; 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;DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5}R++ }setInterval('A()',5); void(0);





Then watch the images on that website move around in your computer. To alter directions and ways the images may move, just change the x and y values and mess around with whatever number you find. If you understand the mathematical formula there, you can try changing to a better formula to make your images go in your own ways.


Love,
Nicholas.