Depending on your knowledge of HTML and javascripts, this is an easy two (2) part copy and paste code that goes in the section <BODY> section (just before the closing </BODY> tag) of your document and a snipplet of code you insert into every link you want this effect associated with.
<!------ <BODY> Section Reconfigurations ------> // CONFIGURATION STARTS HERE |
The portion of code located to the left is where you will be making all the reconfigurations. Just play around with it until if fits your site. Insert the below Color Coded section of code into each and every link you want this effect to be associated with. onMouseOver="startsnow()" onMouseOut="stopsnow()" If you want to have the link(s) open in a new browser window, add the attribute of target="_blank" into the link. If you also want to have a hint come up on mouseover, add a title tag* attribute into the link.title="Place Cursor Here" * A title tag in a text link is the same as an alt tag in an image link. It gives you a little description of what the link has to offer on mouseover. <!------ Text Link And Attributes ------> <a href="URL Goes Here" target="_blank" onMouseOver="startsnow()" onMouseOut="stopsnow()"title="Place Cursor Here">Link Name Here</a> <!------ Image Link And Attributes ------> <a href="URL Goes Here" target="_blank" onMouseOver="startsnow()" onMouseOut="stopsnow()"><img src="Path To Uploaded Image" border="0" width="?" height="?" alt="Message On Mouseover Here"></a>This should cover all the reconfigurations that can be made within this effect. |
Little Extra Not Included In The Script: The <BODY> section of code is rather large and take up lots of space (4.92 KB (5,048 bytes) in your document. If you would prefer to make this section of code into external.js file as opposed to the bloated overweight code, this is no problem.
The <BODY> section of code has opening and closing script tags. To make it into an external.js file, you need to remove those tags, copy and paste what is left into a notepad, save as snowingLinks.js (or any name you want), upload it to your directory and paste a snipplet of code into the <BODY> section (just before the closing </BODY> tag to call the external file. See below on where and howto for the <BODY> section.
If you would like to see our example of making use of the external .js file in the <BODY> section, grab the below link.
[ External .js File In The <BODY> Section ]
For your Information: We named our external.js file snowingLinks.js. This makes it easy for us to know which is which at any given moment.
We hope our tutorial was easy to follow and we covered everything in detail. If you would like to add this effect into your pages, grab the respective below link and you are there. If you have any problems with this or anything else, feel free to consult our [ FAQ ] and if you can't find the answer there, [ contact us ].
[ Get Code Here ]
[ Rate This Page ]