The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

snow for our forum

4 posters

Go down

snow for our forum Empty snow for our forum

Post by corofin12345 December 19th 2011, 3:00 pm

hello all, i couldnt get up a intro as it wouldnt let me but im just wondering if i can get a snow effect on our forum?
corofin12345
corofin12345
Forumember

Posts : 51
Reputation : 1

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by dooby2oon December 19th 2011, 4:02 pm

Not my work belongs to Drogba921
1st goto Admin Control Panel -> Display -> Genaralities -> Message content : Add this 1 line below
<script src="http://www.schillmania.com/projects/snowstorm/lights/christmaslights.js"></script>


Snow script Highlight and copy all below add to Admin Control Panel -> Modules -> JS Management -> enable JS -> Add new JS -> Enable all pages -> make sure you Save/Submit

/** @license
* DHTML Snowstorm! JavaScript-based Snow for web pages
* --------------------------------------------------------
* Version 1.43.20111201 (Previous rev: 1.42.20111120)
* Copyright (c) 2007, Scott Schiller. All rights reserved.
* Code provided under the BSD License:
* http://schillmania.com/projects/snowstorm/license.txt
*/

/*global window, document, navigator, clearInterval, setInterval */
/*jslint white: false, onevar: true, plusplus: false, undef: true, nomen: true, eqeqeq: true, bitwise: true, regexp: true, newcap: true, immed: true */

var snowStorm = (function(window, document) {

// --- common properties ---

this.autoStart = true; // Whether the snow should start automatically or not.
this.flakesMax = 128; // Limit total amount of snow made (falling + sticking)
this.flakesMaxActive = 64; // Limit amount of snow falling at once (less = lower CPU use)
this.animationInterval = 33; // Theoretical "miliseconds per frame" measurement. 20 = fast + smooth, but high CPU use. 50 = more conservative, but slower
this.excludeMobile = true; // Snow is likely to be bad news for mobile phones' CPUs (and batteries.) By default, be nice.
this.flakeBottom = null; // Integer for Y axis snow limit, 0 or null for "full-screen" snow effect
this.followMouse = true; // Snow movement can respond to the user's mouse
this.snowColor = '#fff'; // Don't eat (or use?) yellow snow.
this.snowCharacter = '&bull;'; // &bull; = bullet, • is square on some systems etc.
this.snowStick = true; // Whether or not snow should "stick" at the bottom. When off, will never collect.
this.targetElement = null; // element which snow will be appended to (null = document.body) - can be an element ID eg. 'myDiv', or a DOM node reference
this.useMeltEffect = true; // When recycling fallen snow (or rarely, when falling), have it "melt" and fade out if browser supports it
this.useTwinkleEffect = false; // Allow snow to randomly "flicker" in and out of view while falling
this.usePositionFixed = false; // true = snow does not shift vertically when scrolling. May increase CPU load, disabled by default - if enabled, used only where supported

// --- less-used bits ---

this.freezeOnBlur = true; // Only snow when the window is in focus (foreground.) Saves CPU.
this.flakeLeftOffset = 0; // Left margin/gutter space on edge of container (eg. browser window.) Bump up these values if seeing horizontal scrollbars.
this.flakeRightOffset = 0; // Right margin/gutter space on edge of container
this.flakeWidth = 8; // Max pixel width reserved for snow element
this.flakeHeight = 8; // Max pixel height reserved for snow element
this.vMaxX = 5; // Maximum X velocity range for snow
this.vMaxY = 4; // Maximum Y velocity range for snow
this.zIndex = 0; // CSS stacking order applied to each snowflake

// --- End of user section ---

var s = this, storm = this, i,
// UA sniffing and backCompat rendering mode checks for fixed position, etc.
isIE = navigator.userAgent.match(/msie/i),
isIE6 = navigator.userAgent.match(/msie 6/i),
isWin98 = navigator.appVersion.match(/windows 98/i),
isMobile = navigator.userAgent.match(/mobile|opera m(ob|in)/i),
isBackCompatIE = (isIE && document.compatMode === 'BackCompat'),
noFixed = (isMobile || isBackCompatIE || isIE6),
screenX = null, screenX2 = null, screenY = null, scrollY = null, vRndX = null, vRndY = null,
windOffset = 1,
windMultiplier = 2,
flakeTypes = 6,
fixedForEverything = false,
opacitySupported = (function(){
try {
document.createElement('div').style.opacity = '0.5';
} catch(e) {
return false;
}
return true;
}()),
didInit = false,
docFrag = document.createDocumentFragment();

this.timers = [];
this.flakes = [];
this.disabled = false;
this.active = false;
this.meltFrameCount = 20;
this.meltFrames = [];

this.events = (function() {

var old = (!window.addEventListener && window.attachEvent), slice = Array.prototype.slice,
evt = {
add: (old?'attachEvent':'addEventListener'),
remove: (old?'detachEvent':'removeEventListener')
};

function getArgs(oArgs) {
var args = slice.call(oArgs), len = args.length;
if (old) {
args[1] = 'on' + args[1]; // prefix
if (len > 3) {.



Last edited by dooby2oon on December 19th 2011, 4:06 pm; edited 2 times in total
avatar
dooby2oon
New Member

Male Posts : 6
Reputation : 2
Language : English

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by dooby2oon December 19th 2011, 4:05 pm

Big snow flakes
Goto Admin Control Panel -> Display -> Genaralities -> Message content : Add all below works with above script aswell only on home page tho

/******************************************
* 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
******************************************/

var snowsrc="https://i.servimg.com/u/f72/12/82/36/46/snow10.gif"
var no = 10;
var hidesnowtime = 0;
var snowdistance = "windowheight";

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;
var am, stx, sty;
var i, doc_width = 800, doc_height = 600;

if (ns6up)
{
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
else
if (ie4up)
{
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}

dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();

for (i = 0; i < no; ++ i)
{
dx[i] = 0;
xp[i] = Math.random()*(doc_width-50);
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
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()
{
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)
{
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>
avatar
dooby2oon
New Member

Male Posts : 6
Reputation : 2
Language : English

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by corofin12345 December 19th 2011, 4:44 pm

tried first script and got nothing, pretty sure i followed all instructions too...
corofin12345
corofin12345
Forumember

Posts : 51
Reputation : 1

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by Adam360 December 19th 2011, 5:01 pm

NOT MY WORK

paste this in your site description

Code:
<script src=http://www.forumsuccessors.com/h76-forumsuccessors-fs-content-snow-plugins-snowstormjs></script>
Adam360
Adam360
Forumember

Male Posts : 866
Reputation : 11
Language : English
Location : England

http://GameBase.betaboard.net

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by corofin12345 December 19th 2011, 5:05 pm

got it working using this code is second post and through javascript Very Happy

https://help.forumotion.com/t101512-xmas-lights-java-script

corofin12345
corofin12345
Forumember

Posts : 51
Reputation : 1

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by Adam360 December 19th 2011, 5:07 pm

Glad you got it working
Adam360
Adam360
Forumember

Male Posts : 866
Reputation : 11
Language : English
Location : England

http://GameBase.betaboard.net

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by corofin12345 December 19th 2011, 5:16 pm

i saw a script for xmas lights also but just can not find it now....? limited access here atm so very slow..
corofin12345
corofin12345
Forumember

Posts : 51
Reputation : 1

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by Adam360 December 19th 2011, 5:19 pm

I'll be happy to help you with that but we shouldn't really offer any support in the suggestions topic, if you make a new topic in the support section i'll reply with the answer straight away for you
Adam360
Adam360
Forumember

Male Posts : 866
Reputation : 11
Language : English
Location : England

http://GameBase.betaboard.net

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by corofin12345 December 19th 2011, 5:21 pm

again noob mistake, will do...
corofin12345
corofin12345
Forumember

Posts : 51
Reputation : 1

Back to top Go down

snow for our forum Empty Re: snow for our forum

Post by Jophy December 20th 2011, 2:21 am

Questions should be asked on the support sections not here on the suggestions

Garbage since this is answered.
Jophy
Jophy
ForumGuru

Male Posts : 17924
Reputation : 836
Language : English
Location : Somewhere

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum