Плавно падающие снежинки на HTML5 Canvas
1 2 3 4 5 |
#canvas { background-image: linear-gradient(bottom, rgb(105,173,212) 0%, rgb(23,82,145) 84%); background-image: -moz-linear-gradient(bottom, rgb(105,173,212) 0%, rgb(23,82,145) 84%); background-image: -webkit-linear-gradient(bottom, rgb(105,173,212) 0%, rgb(23,82,145) 84%); } |
1 2 |
<canvas id="canvas"></canvas> <script src="/js/newysnow.js"></script> |
Хм, красивый снег, но как бы реализовать чтобы он шел на фоне блоков, то есть за блоками...
В css добавь
#canvas {
position: fixed;
width: 100%;
height: 100%;
z-index: -5;
}
Спасибки!