CSS3 Snow Animation

Size
1,695 Kb
Views
178,112

How do I make an css3 snow animation?

Christmas is coming up, so wanted to try out making some snow with a CSS3 animation. What is a css3 snow animation? How do you make a css3 snow animation? This script and codes were developed by Nicky Christensen on 29 September 2022, Thursday.

CSS3 Snow Animation Previews

CSS3 Snow Animation - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS3 Snow Animation</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id="snow">
</div>
</body>
</html>

CSS3 Snow Animation - Script Codes CSS Codes

body { background-color:#333; }
#snow{	background: none;	font-family: Androgyne;	background-image: url('http://www.wearewebstars.dk/codepen/img/s1.png'), url('http://www.wearewebstars.dk/codepen/img//s2.png'), url('http://www.wearewebstars.dk/codepen/img//s3.png');	height: 100%;	left: 0;	position: absolute;	top: 0;	width: 100%;	z-index:1;	-webkit-animation: snow 10s linear infinite;	-moz-animation: snow 10s linear infinite;	-ms-animation: snow 10s linear infinite;	animation: snow 10s linear infinite;
}
@keyframes snow { 0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 50% {background-position: 500px 500px, 100px 200px, -100px 150px;} 100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@-moz-keyframes snow { 0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 50% {background-position: 500px 500px, 100px 200px, -100px 150px;} 100% {background-position: 400px 1000px, 200px 400px, 100px 300px;}
}
@-webkit-keyframes snow { 0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 50% {background-position: 500px 500px, 100px 200px, -100px 150px;} 100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@-ms-keyframes snow { 0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 50% {background-position: 500px 500px, 100px 200px, -100px 150px;} 100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
CSS3 Snow Animation - Script Codes
CSS3 Snow Animation - Script Codes
Home Page Home
Developer Nicky Christensen
Username NickyCDK
Uploaded September 29, 2022
Rating 4.5
Size 1,695 Kb
Views 178,112
Do you need developer help for CSS3 Snow Animation?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Nicky Christensen (NickyCDK) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!