Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Pure VPN - Up to 27 Months
vgp
Updated:
Friday at 8:10 AM
එක පැකේජ් එකයි මාසෙටම Unlimited Internet. තාමත් DATA CARD දාන්න සල්ලි වියදම් කරනවද? අඩුම මිලට අපෙන්.
sayuru bandara
Updated:
Jun 2, 2026
Ad icon
ඉන්ටර්නෙට් එකෙන් හරියටම සල්ලි හොයන්න සහ Success වෙන්න කැමතිද? 🚀 (E-Money & Success Stories)
siri sumana
Updated:
May 30, 2026
Gemini AI PRO 18 months Offer
Hawaka
Updated:
May 27, 2026
Ad icon
koko account
DasunEranga
Updated:
May 27, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
Computers & Internet
Software Development
SNOWMAKER JAVASCRIPT
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="MaD-DoC" data-source="post: 3549654" data-attributes="member: 56284"><p style="text-align: left"><strong>[FONT=Arial, Helvetica, sans-serif]<span style="font-size: 10px">Make snow fall on your webpage this Christmas! </span>[/FONT]</strong> </p> <p style="text-align: left"><strong>[FONT=Arial, Helvetica, sans-serif]<span style="font-size: 10px">Here is a great falling snow javascript that doesn't need images uploaded to your server. It uses font types to make the snowflake images which makes it easier for users to install to their websites. </span>[/FONT]</strong> </p> <p style="text-align: left"><strong>[FONT=Arial, Helvetica, sans-serif]<span style="font-size: 10px">It is a one step script which you place into your webpage straight after the <body> tag. </span>[/FONT]</strong> </p> <p style="text-align: left"><strong>[FONT=Arial, Helvetica, sans-serif]<span style="font-size: 10px">Configure the variables at the top of the script to set the number of snowflakes, the colors, fonts and speed. Nothing else needs configuring. </span>[/FONT]</strong> </p> <p style="text-align: left"><strong>[FONT=Arial, Helvetica, sans-serif]<span style="font-size: 10px"><span style="color: #cc0000">STEP 1:</span></span>[/FONT]</strong> </p> <p style="text-align: left"><strong>[FONT=Arial, Helvetica, sans-serif]<span style="font-size: 10px">Copy and paste the falling snow javascript below after the <body> tag of your html.</span>[/FONT]</strong></p> <p style="text-align: left">[FONT=Arial, Helvetica, sans-serif][/FONT] </p><p></p><p>[PHP]<script> </p><p>// CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. </p><p>// Distributed by http://www.hypergurl.com // Permission given to use the script </p><p>on webpages provided that this notice remains as is. // Set the number of snowflakes </p><p>(more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. </p><p>Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") </p><p>// Set the fonts, that create the snowflakes. Add as many fonts as you like var </p><p>snowtype=new Array("Arial Black","Arial Narrow","Times","Comic </p><p>Sans MS") // Set the letter that creates your snowflake (recommended:*) var </p><p>snowletter="*" // Set the speed of sinking (recommended values range </p><p>from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var </p><p>snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // </p><p>Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing </p><p>// Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// </p><p>// CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// </p><p>// Do not edit below this line var snow=new Array() var marginbottom var marginright </p><p>var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new </p><p>Array(); var browserinfos=navigator.userAgent var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/) </p><p>var ns6=document.getElementById&&!document.all var opera=browserinfos.match(/Opera/) </p><p>var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) </p><p>return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight </p><p>marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight </p><p>marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for </p><p>(i=0;i<=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] </p><p>= 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] </p><p>snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size </p><p>snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 </p><p>if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) </p><p>{snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} </p><p>if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} </p><p>snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx </p><p>snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i<=snowmax;i++) </p><p>{ crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); </p><p>snow[i].style.top=snow[i].posy if (snow[i].posy>=marginbottom-2*snow[i].size </p><p>|| parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){ if (snowingzone==1) </p><p>{snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} </p><p>if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} </p><p>if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} </p><p>snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i<=snowmax;i++) </p><p>{ document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>") </p><p>} if (browserok) { window.onload=initsnow } </script> [/PHP]</p></blockquote><p></p>
[QUOTE="MaD-DoC, post: 3549654, member: 56284"] [LEFT][B][FONT=Arial, Helvetica, sans-serif][SIZE=2]Make snow fall on your webpage this Christmas! [/SIZE][/FONT][/B] [B][FONT=Arial, Helvetica, sans-serif][SIZE=2]Here is a great falling snow javascript that doesn't need images uploaded to your server. It uses font types to make the snowflake images which makes it easier for users to install to their websites. [/SIZE][/FONT][/B] [B][FONT=Arial, Helvetica, sans-serif][SIZE=2]It is a one step script which you place into your webpage straight after the <body> tag. [/SIZE][/FONT][/B] [B][FONT=Arial, Helvetica, sans-serif][SIZE=2]Configure the variables at the top of the script to set the number of snowflakes, the colors, fonts and speed. Nothing else needs configuring. [/SIZE][/FONT][/B] [B][FONT=Arial, Helvetica, sans-serif][SIZE=2][COLOR=#cc0000]STEP 1:[/COLOR][/SIZE][/FONT][/B] [B][FONT=Arial, Helvetica, sans-serif][SIZE=2]Copy and paste the falling snow javascript below after the <body> tag of your html.[/SIZE][/FONT][/B] [FONT=Arial, Helvetica, sans-serif][/FONT] [/LEFT] [PHP]<script> // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/) var ns6=document.getElementById&&!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i<=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i<=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i<=snowmax;i++) { document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>") } if (browserok) { window.onload=initsnow } </script> [/PHP] [/QUOTE]
Insert quotes…
Verification
Awruddata maasa keeyada?
Post reply
Top
Bottom