Snow-Fall Effect with JavaScript – Creating Merry Christmas Greetings
On the occasion of Christmas and winter Holidays, I thought to wish this festival by create a nice webpage greetings. So, today I had created this Christmas greeting card using snow-fall effect with help of CSS3 and JavaScript. I hope you all will enjoy this holiday and my web-card too :).
Today we will create a Christmas greeting card using CSS3 and jQuery. There are many things we can do with CSS3 and javascript. We’ll use snowfall.dg.js for creating these snow.
Features and Principle
Note: Snowfall Plugin is Less than 12Kb in size. There are many options for customize and use this plugin as per your requirement. Some features are:
- No need to add any image for snow.
- No need to add any JavaScript library.
- You can use any html element in place of snow.
- Change the Color of Snow by using hexadecimal value.
- Also support in iPhone, iPad and Mobile devices.
- Snow-fall movement with mouse/cursor.
- Stick on bottom.
- Snow melt effect.
- Twinkle effect – you can use this also if you want star-fall
- More options..
What this script does is adds snow-fall to the body. You can find more options in snowfall.dg.js.
The CSS
No special css required for snow fall effect. But in this greeting card, I have used css for background and my greeting message.
body{
font-size:18px;
background:#badaf3 url(merry_chirstmas-wide.jpg) 100% 0 no-repeat;
background-size:cover;
font-family: 'IM Fell Double Pica', georgia, serif;
}
#welcome{
font-size:2em;
width:40%;
margin:4%;
text-align:center;
background-color:#fff;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
background:rgba(255,255,255,.75);
border-radius:10px;
box-shadow:4px 4px 10px 0 rgba(20,20,20,.6);
text-shadow: 2px 2px 3px #fff;
font-style:italic;
padding:1em;
color:#700;
color:rgba(120,0,20,.9)
}
The Html
May the miracle of Christmas fill your heart with
warmth & love.
Christmas is the time of giving and sharing.
It is the time of loving and forgiving.
Hope you and your family have
wonderful Holiday... &... Merry Christmas to Everyone!
Snowfall – The javascript
We have to add this snowfall.dg.js in body. I always prefer to use JavaScript files before close of body tag.
Comments
Post a Comment