Snow Flurry

Copy Paste to yuor page HTML

by vovkasolovev

HTML

<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script type="text/javascript" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/130527/h5ab-snow-flurry.js"></script>
<script>
var style = document.createElement('style');
style.innerHTML = `
.sf-snow-flake {
position: fixed;
top: -20px;
z-index: 99999;
}
.sf-snow-anim {
top: 110%;
}
`;
document.head.appendChild(style); 
jQuery(document).ready(function($){
$(document).snowFlurry({
maxSize: 10,
numberOfFlakes: 100,
minSpeed: 10,
maxSpeed: 20,
color: '#f0f0f0',
timeout: 0
});
});
</script>