Changing of snowflake size
3 posters
Page 1 of 1
Changing of snowflake size
Hi!
I use Angies Code for the snowflakes. Is it possible to change snowflake size in this code?
Forum URL: http://plavi.bigforumpro.com/
I use Angies Code for the snowflakes. Is it possible to change snowflake size in this code?
- Code:
$(function() {
function initSettings() {
snowStorm.autoStart = true;
snowStorm.animationInterval = 33;
snowStorm.flakeBottom = null;
snowStorm.flakesMax = 128;
snowStorm.flakesMaxActive = 64;
snowStorm.followMouse = true;
snowStorm.freezeOnBlur = true;
snowStorm.snowColor = '#FF8';
snowStorm.snowCharacter = '•';
snowStorm.snowStick = true;
snowStorm.targetElement = null;
snowStorm.useMeltEffect = true;
snowStorm.useTwinkleEffect = false;
snowStorm.usePositionFixed = false;
};
$.getScript("http://illiweb.com/rs3/10/frm/snow.js");
var timeout = 0, snowCheck = window.setInterval(function() {
if (typeof snowStorm === 'undefined') {
if (timeout > 5000) window.clearInterval(snowCheck);
return timeout++;
}
else window.clearInterval(snowCheck), initSettings();
},1);
});
Forum URL: http://plavi.bigforumpro.com/
Re: Changing of snowflake size
you should just be able to add this to the list
example
- Code:
snowStorm.flakeWidth=20;
snowStorm.flakeHeight=20;
example
- Code:
snowStorm.targetElement = null;
snowStorm.useMeltEffect = true;
snowStorm.useTwinkleEffect = false;
snowStorm.usePositionFixed = false;
snowStorm.flakeWidth=20;
snowStorm.flakeHeight=20;
};
Similar topics
» Changing the size of the Accordion
» Font Size keeps changing to different numbers
» Changing the font size of a username.
» Changing font, color and size of site description
» Making avatars re size to a set size if they are too big
» Font Size keeps changing to different numbers
» Changing the font size of a username.
» Changing font, color and size of site description
» Making avatars re size to a set size if they are too big
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum