If you're thinking to decorate your blog this Christmas and you want to give them a mind blowing surprise then you're at the right place. Its time to show your skills and amaze your visitors by adding Snow Fall effect to your blog. In this tutorial we'll show you that How to Add a Christmas Snow Fall Effect to your Blogger Blog.
Add Snow Fall Effect to your Blogger Blog
Step 1. Go to your Blogger Dashboard >> Select a Blog >> Template and click Edit HTML buttonStep 2. Click inside the template code area, use Ctrl+F and search for the </head> tag
Step 3. Now Copy (Ctrl+C) the below code and Paste (Ctrl+V) it just above/before the </head> tag
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'/>
<script src='http://yourjavascript.com/146111102320/snowfall.js'/>
<script>
$(document).ready( function(){
$.fn.snow({ minSize: 10, maxSize: 50, newOn: 400, flakeColor: '#ffffff' });
});
</script>
Note: Remove the code in purple color if you already have jQuery in your template.
Customization:
- Increase or Decrease the minimum size of snow by changing the value in minSize: 10,
- Increase or Decrease the maximum size of snow by changing the value in maxSize: 50,
- Increase or Decrease the value in the newOn: 400, option for changing the snow fall speed
- To change the snow color replace #ffffff with your own color code
Step 4. Click Save Template button
And you're done!