dOUBLE WHAMMY BONUS TODAY,GIVE ME SOME FREE TIME AND ILL GIVE YOU TWO SCRIPTS..
THIS SCRIPT WILL ALLOW YOU TO HAVE SNOW FLAKES DRIFFTING DOWN ON HOME PAGE..PLACE IN CUSTOM CODE BOX..ABOVE ALL OR BELOW ALL..IF IT DOESNT WORK YOU MAY HAVE CODING ISSUE .REARRANGE CODE PLACE IN MIDDLE IF HAVE TO..IT DOES WORK ..I HAVE NO WORKING EXAMPLE.I HAVE TRIED IT AND IT DOES WORK ON MY NETWORK..
ENJOY LET IT SNOW..PLEASE COPY THIS IMAGE FOR SNOW FLAKES OR USE YOU OWN IMAGE..right click on links to copy and save images..fallen leaves for autom..flakes is for winter
http://www.dynamicdrive.com/dynamicindex3/snow3.gif..THIS IS FOR FLAKES
http://www.dynamicdrive.com/dynamicindex3/snow2.gif..THIS FOR FALLING LEAVES
Be sure variable "snowsrc" in the above code correctly references the full URL path to the image used. Enjoy!
this is the script below with the gif inside.copy this and place were it is needed
snowsrc=("http://api.ning.com:80/files/i4u7-FBW4ADXmq6j5joppYXlgApYY-Q8JhP8oMdwb2TFMNclfv39fRO9M2bV3JOm-NE8v8R1H0LjsDIbitPsJXwjEclrPVLr/snow2.gif")!=-1)? "snow.gif" : snowsrc
<script type="text/javascript">
/******************************************
* Snow Effect Script- By Altan d.o.o. (http://www.altan.hr/snow/index.html)
* Visit Dynamic Drive DHTML code library (http://www.dynamicdrive.com/) for full source code
* Last updated Nov 9th, 05' by DD. This notice must stay intact for use
******************************************/
//Configure below to change URL path to the snow image
var snowsrc="snow.gif"
// Configure below to change number of snow to render
var no = 10;
// Configure whether snow should disappear after x seconds (0=never):
var hidesnowtime = 0;
// Configure how much snow should drop down before fading ("windowheight" or "pageheight")
var snowdistance = "pageheight";
///////////Stop Config//////////////////////////////////
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 600;
if (ns6up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = iecompattest().clientWidth;
doc_height = iecompattest().clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ie4up||ns6up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://dynamicdrive.com\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");
}
}
}
function snowIE_NS6() { // IE and NS6 main animation function
doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")? iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
}
dx[i] += stx[i];
document.getElementById("dot"+i).style.top=yp[i]+"px";
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";
}
snowtimer=setTimeout("snowIE_NS6()", 10);
}
function hidesnow(){
if (window.snowtimer) clearTimeout(snowtimer)
for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
}
if (ie4up||ns6up){
snowIE_NS6();
if (hidesnowtime>0)
setTimeout("hidesnow()", hidesnowtime*1000)
}
</script>
Tags: CODE, CUSTOM, JQUERY, SNOWFLAKES
wasnt clear on the URL part in the middle. Does everything from script to script need to be copied ? Please let me know - thanks
Permalink Reply by solo on December 5, 2012 at 4:02am @Dan yes from script to script...the url link in the middle i think takes you to copy the flakes..and leaves
Permalink Reply by Santa Norm on December 5, 2012 at 2:47am I tried this on the TEST NETWORK and got nothing???
Permalink Reply by solo on December 5, 2012 at 3:59am @santa put everything in custom codebox..change the url to yours, grab the gif link or download your own replace it in the line that look like this:snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc..or maybe just use tht one
Permalink Reply by Santa Norm on December 5, 2012 at 2:51am Oh, I should add because I am not too bright on all this, I added this to the Appearance Section that said Advanced, clicked Published but nothing happened???
Permalink Reply by solo on December 5, 2012 at 4:42am allright i revisited this script..place code on top of all codes in custome code box..it works
Permalink Reply by solo on December 5, 2012 at 4:50am o.k i now have it running on my network http://yubasutterconnect.com..i hvnt placed the image of flakes but you can see the gif floating down
Permalink Reply by Santa Norm on December 5, 2012 at 8:00pm When I click on your link all I get is "Internet Explorer cannot display the webpage"
Permalink Reply by solo on December 5, 2012 at 8:32pm sorry bout that...http://yubasutterconnect.com... your a bit late took off the flakes..just found another site that offers flakes..very easy to install..check my newest posting snow part 2
Permalink Reply by Scott on December 5, 2012 at 4:49pm Any way to make this happen on just one page instead of the entire site?
I added a script for this a few years ago and people with old machines got bogged down. Maybe your script is more efficient though. Thoughts?
Permalink Reply by solo on December 5, 2012 at 8:42pm hey guys if that script is not working for you try this link to another source easy install..very novice..http://siteapps.com/app/falling_snow-179
Permalink Reply by Santa Norm on December 6, 2012 at 12:42pm OK, in laymans terms how do I add this? Do I click on Appearance, then Advanced, and then just drop it in there because I have tried that several times and nothing happens. I hope this doesn't sound too stupid but this is all kind of difficult for me.
Fire-Tech replied to Alex's discussion 'More styling in the Design Studio'
Allison Leahy replied to Allison Leahy's discussion 'What is your Ning 3.0 URL?' in the group The Sandbox
Liliana Parra replied to John Bizley's discussion 'Show Your Ning 3.0 Sites'
Allison Leahy replied to Jen's discussion 'Menu on Mobile Device Difficult'
Allison Leahy replied to Dw Alternatio's discussion 'Any way to change to a 3.0 network?'
Allison Leahy replied to Jen's discussion 'Menu on Mobile Device Difficult'
Allison Leahy replied to Jen's discussion 'Menu on Mobile Device Difficult'© 2013 Created by Ning.
