91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jquery實現煙花效果(面向對象)

發布時間:2020-10-21 15:16:55 來源:腳本之家 閱讀:222 作者:-恩恩- 欄目:web開發

本文實例為大家分享了jquery實現煙花效果的具體代碼,供大家參考,具體內容如下

<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>煙花效果(面向對象)</title>
 <style type="text/css">
  *{padding: 0;margin: 0}
  body{overflow: hidden;width: 100%;height: 100%;background: #000; }
  div{position: absolute;background: #000;color: #fff}
 </style>
 <script src="jquery-1.8.3.min.js"></script></script>


</head>

<body>
<script type="text/javascript">
 var firWorks = {
  init : function(){ //初始化
   var _that = this;
    $(document).bind("click",function(e){
    _that.eventLeft = e.pageX;
    _that.eventTop = e.pageY;
    _that.createCylinder();
    });
  },
  createCylinder : function(event){ //創建一個花筒
   var _that = this;
   this.cHeight = document.documentElement.clientHeight;//瀏覽器高度
   this.cylinder = $("<div/>");
   $("body").append(this.cylinder);
   this.cylinder.css({"width":4,"height":15,"background-color":"red","top":this.cHeight,"left":this.eventLeft});
   this.cylinder.animate({top:this.eventTop},600,function(){
    $(this).remove();
    _that.createFlower();
   })
  },
  createFlower : function(){ //創建很多很多的煙花哇!!
   /*煙花效果
   *1.煙花是很多個DIV構成
   *2.每個煙花的顏色不一樣
   *3.煙花的位置也不一樣
   *4.煙花散開方向不一樣
   *5.煙花有下墜感覺
   */
   //通過循環可以創建你想要的煙花啦!!!
   var _that = this;
   for(var i = 0 ; i < 30; i++ ){
    $("body").append($("<div class='flower'></div>"));
   };
   $(".flower").css({"width":3,"height":3,"top":this.eventTop,"left":this.eventLeft});
   $(".flower").each(function(index, element) {
    var $this = $(this);
    var yhX = Math.random()*400-200;
    var yhY = Math.random()*600-300;
    _that.changeColor();
    $this.css({"background-color":"#"+_that.randomColor,"width":3,"height":3}).animate({"top":_that.eventTop-yhY,"left":_that.eventLeft-yhX},500);//散開
    for(var i=0;i<30;i++){
     //判斷鼠標點擊時的右邊煙花還是左邊煙花
     if(yhX<0){
      _that.downPw($this,"+");//右下墜
     }else{
      _that.downPw($this,"-");//左下墜
     }
    }
   });     
  },
  changeColor : function(){
   /*煙花的顏色是隨機的,而且是用16進制表示色值,所以用隨機數結合16進制;
   *16進制的最大值ffffff,轉換成十進制16777215;
   *Math.random()*16777215公式可以得到0-16777215之間的數,因為是小數,所以要用到取整;
   *Math.ceil(Math.random()*16777215)生成一個在顏色值范圍內的,隨機的十進制值;
   *Math.random()*9+1公式可以得到1-10之間的數,以此類推
   *.toString(16)方法,是把得到的十進制,轉換成16進制,也就是隨機的顏色值了;
   */    
   this.randomColor = "";
   this.randomColor = Math.ceil(Math.random()*16777215).toString(16)//;
   //當這個產生的隨機的顏色值,不足6位數的進候,需要補齊,又不改變其值,所以要在這個數的前面加零;
   while(this.randomColor.length<6){
    this.randomColor = "0"+this.randomColor;
   }
  },
  downPw : function(ele,type){ //煙花下墜啦 !!!!
   ele.animate({"top":"+=30","left":type+"=4"},50,function(){
     setTimeout(function(){ele.remove()},2000);
   })
  }
 };
 firWorks.init();
</script>

</body>
</html>

更多JavaScript精彩特效分享給大家:

jQuery幻燈片特效匯總

jQuery焦點圖特效匯總

jQuery級聯菜單特效匯總

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

光山县| 玉林市| 东平县| 隆子县| 武功县| 静安区| 合水县| 新安县| 屏东市| 蚌埠市| 景东| 湖州市| 光山县| 深水埗区| 永春县| 信宜市| 文山县| 于田县| 香河县| 彩票| 澎湖县| 罗城| 富宁县| 珠海市| 呼玛县| 太原市| 昭苏县| 蓬溪县| 吴江市| 昭通市| 海阳市| 乳源| 农安县| 庆城县| 枣庄市| 平利县| 阳新县| 观塘区| 内黄县| 三亚市| 乌鲁木齐市|