DISQUS

OhGizmo!: OhGizmo! » Archive » Screw Up Any Webpage, In Two Seconds Flat

  • Anonymous · 2 years ago
    Doesnt work
  • Koz · 2 years ago
    Hi guys, that code you put there doesn't work but you can use this one: 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);

    I love oh gizmo, keep up the cool reviews!
  • crack · 2 years ago
    this is nothing new. rohitab played with this months ago, and it was all over the place months before that.
  • Alan · 2 years ago
    The reason the code on this site doesn't work but the code on destructoid does is due to the single quote characters. The code on destructoid uses a regular single quote character, ASCII character 27 in hex or 39 in decimal. The code as shown on ohgizmo is using some other special character that looks like a quote. This often happens when using something like a word processor to type computer code. Computer code is not intended to be typed in a word processor or any other sort of rich text editor. Get rid of the fancy single quote character and use a nice simple regular single right quote ASCII character, and all will be well.