lol wtf?

Dog--

The Freeman
Joined
Apr 16, 2005
Messages
9,741
Reaction score
25
Open ANY site, then copy/paste this into the address bar over the site name.

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=*************ElementsByTagName("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 (o);

Tis quite the trip, indeed.


EDIT: dammit, over the *'s, type "document . get" without the spaces.
 
Ok I don't have silverlight right now, so I can't see the result.

It builds some kind of mosaic of the web experience?
 
It takes all the images on the web page and makes them do loops and shit.. It's wierd.
 
Are you sure that wasn't just mushrooms?

I see lots of math. Any other codes? More info, etc.


TIRED
 
Ok I don't have silverlight right now, so I can't see the result.

It builds some kind of mosaic of the web experience?

when has anyone ever needed silverlight to run javascript ?.
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=documen. getElementsByTagName("img"); // an array of all the images in the document
DIL=DI.length; // number of items in the array

 function A(){  
for(i=0; i-DIL; i++) //loop through the array and change their positions according to R , the positions are determined by wave functions that repeat like sine and cos 
{
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); // run the position function every 5 miliseconds.
void (o);
 
Nothing happened, NOTHING HAPPENED?!
 
I have to manually type the img codes because I'm using the thing on this page now and it stole my image code button..

64810976dp8.png
 
Did you guys replace the *'s with "document . get" without the spaces?
 
This is fantastic, thnx for posting virus( I meant dog).
 
It's a good time waster to try and click the smaller images that float around, I did it on Youtube and some of those little bastards are tough to hit.
 
Back
Top