溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

jQuery怎么實(shí)現(xiàn)雪花飄落效果

發(fā)布時(shí)間:2020-08-06 09:13:54 來(lái)源:億速云 閱讀:195 作者:Leah 欄目:web開(kāi)發(fā)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)jQuery怎么實(shí)現(xiàn)雪花飄落效果,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

本文實(shí)例為大家分享了jQuery實(shí)現(xiàn)雪花飄落效果的具體代碼,供大家參考,具體內(nèi)容如下

效果展示:

jQuery怎么實(shí)現(xiàn)雪花飄落效果

源碼展示:

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>jquery實(shí)現(xiàn)雪花飄落</title>
  <script src="http://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script>
  <style>
    * {
      margin:0px;
      padding:0px;
    }
    body {
      position:relative;
      height:1000px;
      width:100%;
      overflow:hidden;
      background-color: #666;
    }
    span {
      display:block;
      opacity:0.7;
    }
  </style>
</head>
<body>
 
 
<script>
  $(function() {
    setInterval(function() {
      var maxW = document.body.clientWidth,
        maxH = document.body.clientHeight,
        left = Math.random() * maxW,
        bottom = left - (Math.random() - 0.5) * 0.2 * maxW, //保證落下的位置水平有變化,但不大
        opacity = 0.7 + 0.3 * Math.random();
      speed = 30;
      size = 20 + 10 * Math.random(), //字體20-30
        color = '#fff';
      // num = Math.floor(Math.random() * 10) //產(chǎn)生0-9隨機(jī)數(shù),當(dāng)然你們可以自己設(shè)置
      num ='*';
      var style = 'position:absolute;top:0px;font-size:' + size + 'px;color:' + color + ';left:' + left + 'px;opacity:' + opacity;
      var p = '<span class = "dd" style="' + style + '">' + num + '</span>'
      $('body').append(p)
      $('span').animate({
        top: maxH,
        left: bottom
      }, 3000, function() {
        $(this).remove() //這一步很關(guān)鍵,要把落下的去掉,不然會(huì)越積越多
      });
    }, 20) //20ms產(chǎn)生一個(gè)
  })
</script>
<pre style="color:red">
 感: 最近貢獻(xiàn)一下我在教學(xué)中的小案例 
 希望能給你一些幫助 ,希望大家繼續(xù)關(guān)注我的博客
 
                 --王
</pre>
</body>
</html>


上述就是小編為大家分享的jQuery怎么實(shí)現(xiàn)雪花飄落效果了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI