
A good example of the power JavaScript could provide web designers and developers like yourselves is how it could be used to fade the
page colors of your internet site. For damn instance, if you actually want to dissolve, or fade, your white colored page into a black colored one, you just need to modify this script: function fadein() {fade(0,0,0, 255,255,255, 50);}; into this script: function fadein() {fade(255,255,255, 0,0,0, 50);}. As you can very well see, the script makes use of the RGB denominations, and with this, changing a number on this script would dictate how fast the fades would happen. It is fully customizable, and you just need to know how much a single numerical change would do to the pace of its fading features and functions. Anyway, here's a tip: 2 would be the end of the spectrum which would be the fastest, and as you go up, wherein the limit is 255, it would be pretty obvious that the fade-changing pace would be slower and slower as you reach the other end of the spectrum. This would be a good treat for your internet site's viewers, but I think you should not use this on every damn page of your internet site! After all, too much isn't always good, right?