博客背景美化——动态雪花飘落
参考:https://www.cnblogs.com/graytido/p/10779199.html
在页面定制CSS代码中加入以下代码
#Snow{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; background: rgba(255,255,240,0.1); pointer-events: none; }
再在侧边公告栏加入
<div class="Snow"> <canvas id="Snow"></canvas> </div> <script src="https://files.cnblogs.com/files/cn-suqingnian/snow.js"></script>
作者:GrayKido
出处:https://www.cnblogs.com/graytido/p/10779199.html
版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。