Quantcast

9 Funniest JavaScript Effects

Sat, Feb 6, 2010

Development, Javascript

DiggThis
Delicious

9 Funniest JavaScript Effects

Everybody knows the Internet is the environment that we can use for a lot of things. The Internet is getting more and more important, we can use it for working, learning, for entertaining …

Only in the aspect of entertainment, we use the Internet to play online games, to search, listen & download the favorite songs, videos, movies, …

The Internet also is the very good environment for studying, it helps us in looking for the materials, solving our problems, getting the supports from the other persons, … Especially in the field of computers in general, web programming in particular; many people think the programming languages are only for working, there’s no joy in it.

That’s reason why I wrote this post, I just want to say to all: with JavaScript, you can find some little joys; JavaScript can make many funny things that you may not have realized. Here’s list of funniest things JavaScript can do.


1. Pictures flying as a snake around the mouse pointer

Pictures flying as a snake around mouse pointer

Just paste the JavaScript below into the address bar of any browser then press Enter, it makes all pictures on the current web page fly around like a snake when you move the pointer.
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; var 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++}tag=setInterval('A()',5 );document.onmousedown=function(){clearInterval(tag);for(i=0; i<DIL; i++){DI[i].style.position="static";}}; void(0)
In the above JavaScript, you can change document.getElementsByTagName("img") to any HTML tag that you want to apply.

Here’s some another versions of this effect: 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);

2. Transform the web page into the eaditable mode

Transform the web page into the eaditable mode

javascript:document.body.contentEditable='true'; document.designMode='on'; void 0 This JavaScript code lets you modify any web page in real-time; and with Firefox, you can even save the modified web pages to your computer. You can do many funny things with the simple JavaScript above, such as: faking the screen capture of some proof, faking some hot news for April Fool’s Day… quickly.

3. You must love me

You must love me

Give your lover the link of this effect, then ask her to answer the question “Do you love (marry) me?” and she can’t repudiate, lol.

Demo, Source

4. Joking Error Message Alert box

Joking Error Message Alert box

Like the above funny JavaScript but this script uses the picture to make the choices; maybe from the idea of this joke plus some different pictures, you can make more funny jokes.

5. The text based Cheerleader Animation

The text based Cheerleader Animation

No need to say more about it, let try it out by yourself.

Demo, Source

6. Faking Textarea on Typing

This funny script made to prove that you’re too trusting of people. Don’t believe me? Just check it by yourself.

Demo, Source

7. Unclosable Window

Yeah, you should recheck your mind carefully before run this script, maybe it will not be funny; and you have to enable popup for this damn script, lol.

Demo, Source

8. Shaking the browser window for a while

Change the dimension of your browser window to Normal mode, maybe a half of the screen resolution is best; then run the code below by pasting it into the address bar and codessing the Enter key. javascript:function Shw(n) {if (self.moveBy) {for (i = 35; i > 0; i--) {for (j = n; j > 0; j--) {self.moveBy(1,i);self.moveBy(i,0);self.moveBy(0,-i);self.moveBy(-i,0); } } }} Shw(6)

9. Love Tester

Love Tester

A small JavaScript to test the love compatibility’ between two people. I & this script are not responsible for any broken relationship you tried, lol.

Demo, Source

Simple & Funny Games by JavaScript

Simple & Funny Games by JavaScript

In the end of this list, maybe this is not a script, I just want to list some resources that you can play some JavaScript games for relaxing. Certainly, the games made by JavaScript will be simple but they’re not boring any; they’re really games that you can find a little of fun.
- Game Scripts
- 25 Amazing JavaScript Games
- JavaScript Gaming
- Free JavaScript Games Download
- Free JavaScript Games

Conclusion

Some JavaScript codes can be executed in the address bar of browser immediately, others must be used as a HTML file for affecting. But I hope you’ll like this post and find some funny things; if you know anymore, please let me know.

Author : Cao Phong

is the Web developer for 5+ years with PHP, JavaScript, CSS. He is the creator & the administrator of JavaScriptBank.com: provide you thousands of free JavaScript codes, DHTML, JavaScript tutorials, training videos, examples, reference and help

Related posts

  1. More jQuery and General Javascript Tips to Improve Your Code This post pick up on my previous post “jQuery...
  2. jQuery and General Javascript Tips to Improve Your Code I have published several articles describing the many benefits...
  3. Top 10 JavaScript Frameworks by Google JavaScript – an indispensable part for developing websites and...
  4. 25+ Create Amazing Image Effects with Some of the Best jQuery Plugins Available JavaScript frameworks like jQuery, prototype (and script.aculo.us), Dojo and...
  5. Google Release some of their internal JavaScript goodies Google is now providing to the public some of...

Please subscribe to tripwire magazines rss feed

Please remember to share this post!

DiggThis
Delicious

6 Comments For This Post

  1. Federico Moreno Says:

    #2 and #4 are really fun to play with ^^

  2. Michael Says:

    The “Do you love me” Script was funny :-D

  3. stuart johnson Says:

    Hi there…
    It was such a nice post..

    thamk you.

  4. Gilroy Says:

    Amazing and cool javascript effects.. thanks for sharing.

  5. Rotary Laser Level Expert Says:

    Cool stuff.
    Thanks for sharing – Possibly a bit career limiting to use them on clients sites.

  6. tripwiremag Says:

    @Rotary, not just possibly…definitely! But you should be safe just having fun with them… ;)

8 Trackbacks For This Post

  1. uberVU - social comments Says:

    Social comments and analytics for this post…

    This post was mentioned on Twitter by BarryMadden: 9 Funniest JavaScript Effects http://bit.ly/aCc5f6 | #Design…

  2. 9 Funniest JavaScript Effects | Programming Blog Says:

    [...] Feed provided by tripwrire magazine, Visit this post here: Permalink [...]

  3. 9 Funniest JavaScript Effects | tripwire magazine | 007Nova Articles Says:

    [...] more here: 9 Funniest JavaScript Effects | tripwire magazine Share and [...]

  4. 9 Funniest JavaScript Effects | tripwire magazine | Drakz Free Online Service Says:

    [...] rest is here: 9 Funniest JavaScript Effects | tripwire magazine Share and [...]

  5. 9 Funniest JavaScript Effects | tripwire magazine | Drakz Free Online Service Says:

    [...] original post here: 9 Funniest JavaScript Effects | tripwire magazine Share and [...]

  6. 9 Funniest JavaScript Effects | Design Newz Says:

    [...] 9 Funniest JavaScript Effects [...]

  7. Tweets that mention 9 Funniest JavaScript Effects | tripwire magazine -- Topsy.com Says:

    [...] This post was mentioned on Twitter by Chetan R, Louis Gubitosi, Ron Williams, 2expertsdesign.com, Web / Graphic Design and others. Web / Graphic Design said: 9 Funniest JavaScript Effects http://bit.ly/aCc5f6 | #Design [...]

  8. 9 Funniest JavaScript Effects | TopRoundups Says:

    [...] 9 Funniest JavaScript Effects Submitted by lvraa [...]

Leave a Reply