How To Add Snow In The Background of Your Blog Using CSS

Today we’re going to go over a super simple CSS technique that you can use to make it snow on your Blogger blog. It seems particularly attractive since it doesn't require scripts, only CSS and three small images.

An advantage of this method is that by not using scripts doesn't overload the blog, the disadvantage being that users with not so modern browsers, will not be able to see it (in Internet Explorer works for version 10 and up).

The snow will fall in the background of the blog, which, in addition, prevent interfering with links or content (because the flakes are images), also prevent blocking the visibility of the content of the blog.

falling snow, snow, winter background, blogger



How To Add Falling Snow To Blogger Blogspot

Step 1. Go to "Template" and click on the "Edit HTML" button:


Step 2. Click the small arrow on the left of <b:skin>...</b:skin> to expand the style (screenshot 1) and click anywhere inside the code area to search by using the CTRL + F keys for the ]]></b:skin> tag (screenshot 2)

Step 3. Add the following code just above it:
/* Snow falling for Blogger
----------------------------------------------- */
@keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}

@-moz-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}

@-webkit-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}

@-ms-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}

#falling-snow {
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglLBoaoIRJqF7zz6XXqIgIvx3XtBMOXdvaAUPkfStElDbgKAAHQtUTV1Lc5Oi5oFAQRYfXStKQ5cB_k5aBtkQ9POF3gpXafPy9M4cfaNtz3uaFXAgBLgv8H1mRKHbgyuZoYz880Blp34NP/s1600/snow.png), url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdbOG4jWSMSjofpVoHJfTc4mQVvc1T_uPZSg0CzkTZd_yRmcK3hZ2SNDmBGAwmPCow_6UYChmG8zHP8-dX-U-kTuZsmsneowud54uK0Wvv3dQLRboHzw1DV2J9YxVLIJkoKnXkOqBIiX5l/s1600/snow3.png), url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicGbXKYLWLvD6p0AzI_NLSabVDDNwddKkmrQ3nqSxkrjApHqHepLLR4sKIR8lUYA2y6n_fZRT3XwBsSeFmTupO939ECmYnkgXipDEy7TH3Cirs1a9fAMr4Eu13oUuyM8zbdLAxmHOtr7BA/s1600/snow2.png);
-webkit-animation: snow 20s linear infinite;
-moz-animation: snow 20s linear infinite;
-ms-animation: snow 20s linear infinite;
animation: snow 20s linear infinite;
}
Screenshot 1:


Screenshot 2:


Step 3. Now, search (CTRL + F) the <body> tag or if you can't find it, search this line below:
<body expr:class='&quot;loading&quot; + data:blog.mobileClass'>
Step 4. Just below the tag, add this:
<div id='falling-snow'>
Step 5. Finally, find the closing </body> tag and add this tag just above it:
</div>
Step 6. Save the changes and that's it. Enjoy! :)

As you can see this tricks is very simple and easy to install, does not block the visibility of blog's content and most important, it has no scripts, only CSS and nothing else.

7 comments:

  1. Thank you so much , i wanted to do this for such a long time

    ReplyDelete
  2. hi very nice blog , with option to see posts in grid and list view tried searching internet but none of the code could do it , hoping that you will definitely help me out in this

    ReplyDelete
  3. this code was not on our site header is staying at the snow we need to do for it http://postimg.org/image/l7r6mcxg7/

    ReplyDelete
  4. Not Working Check Out What's The Problem.... www.genioxe.blogspot.com

    ReplyDelete
  5. works perfectly ......................

    ReplyDelete
  6. Thank u soooo much !

    ReplyDelete