zoukankan      html  css  js  c++  java
  • 下雪了-js下雪效果

    Jingle Bells,Jingle Bells,圣诞来临,做了一个下雪的小程序玩。有大雪花和小雪花。

    <!DOCTYPE html PUBliC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <style type="text/css">
    body
    {
      overflow:hidden;
      background:#0099FF;
    }
    .smallSnowflake,.largeSnowflake
    {
     font-size:38px;
     color:white;
     position:absolute;
    }
    .largeSnowflake{
     font-size:48px;
    }
    </style>
    <script type="text/javascript">
    window.onload=function(){
      var snow=new Snow();
      snow.start();
    };
    function Snow(){
        this.sky=document.body;
        this.width=document.documentElement.clientWidth;
    this
    .height=document.documentElement.clientHeight; } Snow.prototype={ start:function(){ var _this=this; _this.createSmallSnowflake(); _this.createLargeSnowflake(); }, createSmallSnowflake:function(){ var _this=this; setInterval(function(){ var smallSnow=document.createElement('p'); smallSnow.innerHTML='*'; smallSnow.className='smallSnowflake'; smallSnow.style.left=Math.round(Math.random()*_this.width)+'px'; _this.sky.appendChild(smallSnow); _this.slide(smallSnow); },1000); }, createLargeSnowflake:function(){ var _this=this; setInterval(function(){ var largeSnow=document.createElement('p'); largeSnow.innerHTML='*'; largeSnow.className='largeSnowflake'; largeSnow.style.left=Math.round(Math.random()*_this.width)+'px'; _this.sky.appendChild(largeSnow); _this.slide(largeSnow); },2000); }, slide:function(ele){
    var _this=this;
    var timer=setInterval(function(){ var t=ele.offsetTop; ele.style.top=t+5+'px';

            if(ele.offsetTop+ele.style.height>_this.height)       

            {               

                _this.sky.removeChild(ele);

                clearInterval(timer);       

            }

    
         },1000);
      }
    };
    </script>
    </head>
    <body>
    </body>
    </html>

    效果图:

    转眼又是年末了,又要跨年了。希望新的一年所有愿望可以实现,加油。

  • 相关阅读:
    高精度加法和减法。加法还好,减法花了不少时间。
    整数拆分
    二叉搜索树的中位数
    基本有序数组的排序
    log4j手册
    mysql技巧
    vim配置文件
    regex for python like preg_match of php
    字符串按word反转
    the little redis 阅读笔记
  • 原文地址:https://www.cnblogs.com/linda586586/p/4172599.html
Copyright © 2011-2022 走看看