Created
August 29, 2012 12:49
-
-
Save mmontolli/3512012 to your computer and use it in GitHub Desktop.
Some rain drops generated in JS through some random values (left and top position). Those drops are then animated in CSS from top to bottom (simple infinite animation).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class="rain"></section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// number of drops created. | |
var nbDrop = 858; | |
// function to generate a random number range. | |
function randRange( minNum, maxNum) { | |
return (Math.floor(Math.random() * (maxNum - minNum + 1)) + minNum); | |
} | |
// function to generate drops | |
function createRain() { | |
for( i=1;i<nbDrop;i++) { | |
var dropLeft = randRange(0,1600); | |
var dropTop = randRange(-1000,1400); | |
$('.rain').append('<div class="drop" id="drop'+i+'"></div>'); | |
$('#drop'+i).css('left',dropLeft); | |
$('#drop'+i).css('top',dropTop); | |
} | |
} | |
// Make it rain | |
createRain(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html{height:100%;} | |
body { | |
background:#0D343A; | |
background:-webkit-gradient(linear,0% 0%,0% 100%, from(rgba(13,52,58,1) ), to(#000000) ); | |
background: -moz-linear-gradient(top, rgba(13,52,58,1) 0%, rgba(0,0,0,1) 100%); | |
overflow:hidden;} | |
.drop { | |
background:-webkit-gradient(linear,0% 0%,0% 100%, from(rgba(13,52,58,1) ), to(rgba(255,255,255,0.6)) ); | |
background: -moz-linear-gradient(top, rgba(13,52,58,1) 0%, rgba(255,255,255,.6) 100%); | |
width:1px; | |
height:89px; | |
position: absolute; | |
bottom:200px; | |
-webkit-animation: fall .63s linear infinite; | |
-moz-animation: fall .63s linear infinite; | |
} | |
/* animate the drops*/ | |
@-webkit-keyframes fall { | |
to {margin-top:900px;} | |
} | |
@-moz-keyframes fall { | |
to {margin-top:900px;} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment