北京不下雪,自己来点雪花看看吧~(附效果图)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了北京不下雪,自己来点雪花看看吧~(附效果图)相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
    </body>
</html>
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            body{
                background: black;
            }
            @keyframes snow{
                0% {
                    background-position: 0 0, 0 0;
                }
                100% {
                    background-position: 500px 1000px, 500px 500px;
                }
            }
            @-webkit-keyframes snow{
                0% {
                    background-position: 0 0, 0 0;
                }
                100% {
                    background-position: 500px 1000px, 500px 500px;
                }
            }
            #snowMask {
                position: fixed;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 999;
                background: url(‘http://2013.miaov.com/2013/img/snow1.png‘),url(‘http://2013.miaov.com/2013/img/snow2.png‘);
                pointer-events: none;
                -webkit-animation: snow 15s linear infinite;
                animation: snow 15s linear infinite;
            }
        </style>
        <script type="text/javascript">
            (function(){
                var snowMask = document.querySelector(‘#snowMask‘);
                function isIE() {
                    if (!!window.ActiveXObject || "ActiveXObject" in window)
                        return true;
                    else
                        return false;
                }
                snowMask.style.display = (!isIE())?"block":"none";
            })();
        </script>
    </head>
    <body>
        <div id="snowMask" style="display: block;"></div>
    </body>
</html>

技术分享图片

以上是关于北京不下雪,自己来点雪花看看吧~(附效果图)的主要内容,如果未能解决你的问题,请参考以下文章

精灵雪花特效(HTML+JS+CSS+代码+效果)

[js高手之路]html5 canvas动画教程 - 下雪效果

用HTML实现简单的下雪特效

给你的WordPress站点添加下雪特效

安卓手机下雪效果怎么设置?

js实现下雪雪花特效