您好,登錄后才能下訂單哦!
本文實例為大家分享了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級聯菜單特效匯總
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。