-
Notifications
You must be signed in to change notification settings - Fork 0
/
test2.js
35 lines (26 loc) · 960 Bytes
/
test2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Snow Falling
function fallingSnow() {
// Création élément HTML
var snowflake = $('<div class="snowflakes">+</div>');
$('#snowZone').prepend(snowflake);
// Position de départ
snowX = Math.floor(Math.random() * $('#site').width());
// Vitesse = durée d'animation
snowSpd = Math.floor(Math.random() + 4000);
// Position de départ (axe horizontal)
snowflake.css({'left':snowX+'px'});
// Déplacement avec jQuery animate
snowflake.animate({
top: "100vh",
// Durée et Fin de l'animation, on supprime le flocon
}, snowSpd, function(){
$(this).remove();
// On répète l'animation
// fallingSnow();
});
}
var timer = Math.floor(Math.random() +5000);
// on répète à l'infini, une fois par seconde.
window.setInterval(function(){
fallingSnow();
}, timer);