Skip to content

Instantly share code, notes, and snippets.

@3raxton
Created January 5, 2025 21:40
Show Gist options
  • Save 3raxton/dcefcc3debc18e0e54be768944e10090 to your computer and use it in GitHub Desktop.
Save 3raxton/dcefcc3debc18e0e54be768944e10090 to your computer and use it in GitHub Desktop.
snowflakes
<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