Created
January 5, 2025 21:40
-
-
Save 3raxton/dcefcc3debc18e0e54be768944e10090 to your computer and use it in GitHub Desktop.
snowflakes
This file contains 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
<script src="https://unpkg.com/magic-snowflakes/dist/snowflakes.min.js"></script> | |
<script> | |
var now = new Date(); | |
var day = now.getDate(); // 0-31 Days | |
var month = now.getMonth() + 1; // 0-11 Months | |
if(day === 05 && month == 01) { | |
var snowflakes = new Snowflakes({ | |
color: '#fff', // Default: "#5ECDEF" | |
count: 50, // 100 snowflakes. Default: 50 | |
minOpacity: 0.1, // From 0 to 1. Default: 0.6 | |
maxOpacity: 1, // From 0 to 1. Default: 1 | |
minSize: 10, // Default: 10 | |
maxSize: 30, // Default: 25 | |
rotation: true, // Default: true | |
speed: 1, // The property affects the speed of falling. Default: 1 | |
wind: true, // Without wind. Default: true | |
}); | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment