首页  >  文章  >  web前端  >  实例教程 HTML5 Canvas 超炫酷烟花绽放动画实现代码_html5教程技巧

实例教程 HTML5 Canvas 超炫酷烟花绽放动画实现代码_html5教程技巧

WBOY
WBOY原创
2016-05-16 15:47:163116浏览

  这是一个很酷的HTML5 Canvas动画,它将模拟的是我们现实生活中烟花绽放的动画特效,效果非常逼真,但是毕竟是电脑模拟,带女朋友看就算了,效果还是差了点,呵呵。这个HTML5 Canvas动画有一点比较出色,就是其性能,Chrome上基本没有卡的感觉,就算你放出很多烟花也一样。

  下面我们来简单分析一下实现这款HTML5烟花特效的过程及代码,主要由HTML代码、CSS代码以及Javascript代码组成,当然javascript代码是最重要的。

  HTML代码:

XML/HTML Code复制内容到剪贴板
  1. <div id=”gui”>div>  
  2. <div id=”canvas-container”> <div id=”mountains2″>div>    
  3. <div id=”mountains1″>div><div id=”skyline”>div> div>  

  HTML的结构非常简单,即构造了一个canvas容器,我们会利用JS在这个容器中生成一个Canvas对象。看最后的JS代码你就会知道了。

  CSS代码:

CSS Code复制内容到剪贴板
  1. #canvas-容器{ 背景#000 url(bg.jpg); 高度400px; :50%; 边距: -200px 0 0 -300px位置绝对; 顶部:50%; 宽度600px; z 索引:2;   
  2. } 画布 { 光标十字线显示阻止职位相对; z 索引:3;   
  3. } 画布:活动 { 光标十字线;   
  4. #skyline { 背景网址 (skyline.png) 重复-x 50% 0; 底部底部:0; 高度135px; :0; 位置绝对; 宽度:100%; z 索引:1;       
  5. #mountains1 { 背景网址 (mountains1.png) 重复-x 40% 0; 底部底部:0; 高度200px; :0; 位置绝对; 宽度:100%; z 索引:1;       
  6. #mountains2 { 背景网址 (mountains2.png) 重复-x 30% 0; 底部底部:0; 高度250px; :0; 位置绝对; 宽度:100%; z 索引:1;       
  7. #gui { : 0; 位置固定; 顶部:0; z 索引:3;   
  8. }  

  CSS代码没什么特别,主要也就定义一下背景色和边框之类的。

  接下来是最重要的Javascript代码。

  Javascript代码:

JavaScript Code复制内容到剪贴板
  1. self.init = 函数(){       
  2.     self.dt = 0;   
  3.         self.oldTime = Date.now();   
  4.         self.canvas = document.createElement('canvas');                   
  5.         self.canvasContainer = $('#canvas-container'); var canvasContainerDisabled = document.getElementById('canvas-container');   
  6.         self.canvas.onselectstart = 函数() { 返回 false;   
  7.         };   
  8.   
  9.         self.canvas.width = self.cw = 600;   
  10.         self.canvas.height = self.ch = 400;       
  11.   
  12.         self.articles = [];       
  13.         self.partCount = 30;   
  14.         self.fireworks = [];       
  15.         self.mx = self.cw/2;   
  16.         self.my = self.ch/2;   
  17.         self.currentHue = 170;   
  18.         self.partSpeed = 5;   
  19.         self.partSpeedVariance = 10;   
  20.         self.partWind = 50;   
  21.         self.partFriction = 5;   
  22.         self.partGravity = 1;   
  23.         self.hueMin = 150;   
  24.         self.hueMax = 200;   
  25.         self.fworkSpeed = 2;   
  26.         self.fworkAccel = 4;   
  27.         self.hueVariance = 30;   
  28.         self.flickerDensity = 20;   
  29.         self.showShockwave = false;   
  30.         self.showTarget = true;   
  31.         self.clearAlpha = 25;   
  32.   
  33.         self.canvasContainer.append(self.canvas);   
  34.         self.ctx = self.canvas.getContext('2d');   
  35.         self.ctx.lineCap = '圆形';   
  36.         self.ctx.lineJoin = '圆形';   
  37.         self.lineWidth = 1;   
  38.         self.bindEvents();               
  39.         self.canvasLoop();   
  40.   
  41.         self.canvas.onselectstart = 函数() { 返回 false;   
  42.         };   
  43.   
  44.     };  

  这段JS代码主要是往canvas容器中构造一个Canvas对象,并且对这个canvas对象的外观以及动画属性作了初始化。

JavaScript Code复制内容到剪贴板
  1. var 粒子 = 函数(x, y, 色调){ 这个.x = x; 这个.y = y; 这个.coordLast = [   
  2.             {x: x, y: y},   
  3.             {x: x, y: y},   
  4.             {x: x, y: y}   
  5.         ]; 这个.angle = rand(0, 360); 这个.speed = rand(((self.partSpeed - self.partSpeedVariance) 这个.friction = 1 - self.partFriction/100; 这个.gravity = self.partGravity/2; 这个.hue = rand(hue-self.hueVariance, hue self.hueVariance); 这个.brightness = rand(50, 80); 这个.alpha = rand(40,100)/100; 这个.decay = rand(10, 50)/1000; 这个.wind = (rand(0, self.partWind) - (self.partWind/2))/25; 这个.lineWidth = self.lineWidth;   
  6.     };   
  7.   
  8.     Particle.prototype.update = 函数(索引){ var 弧度 = 这个.angle * Math.PI / 180; var vx = Math.cos(弧度) * 这个.speed; var vy = Math.sin(弧度) * 这个.speed   这个 。重力; 这个.速度*= 这个.摩擦力; 这个.coordLast[2].x = 这个.coordLast[1].x; 这个.coordLast[2].y = 这个.coordLast[1].y; 这个.coordLast[1].x = 这个.coordLast[0].x; 这个.coordLast[1].y = 这个.coordLast[0].y; 这个.coordLast[0].x = 这个.x; 这个.coordLast[0].y = 这个.y; 这个.x = vx * self.dt; 这个.y = vy * self.dt; 这个.angle  = 这个.wind; 这个.alpha -= 这个.decay; if(!hitTest(0,0,self.cw,self.ch,这个.x-这个.radius,这个.y-这个.radius,这个.radius*2, 这个.radius*2) ||  这个.alpha 
  9.             self.articles.splice(index, 1);       
  10.         }               
  11.     };   
  12.   
  13.     Particle.prototype.draw = 函数(){ var coordRand = (rand(1,3) -1);   
  14.         self.ctx.beginPath();                                   
  15.         self.ctx.moveTo(Math.round(这个.coordLast[coordRand].x), Math.round(这个.coordLast[coordRand].y));   
  16.         self.ctx.lineTo(Math.round(这个.x), Math.round(这个 .y));   
  17.         self.ctx.closePath();                   
  18.         self.ctx.tripStyle = 'hsla(' 这个.hue ' , 100%, '这个.亮度 '%, '这个.alpha ')';   
  19.         self.ctx.中风(); if(self.flickerDensity > 0){ var inverseDensity = 50 - self.flickerDensity; if(rand(0, inverseDensity) === inverseDensity){   
  20.                 self.ctx.beginPath();   
  21.                 self.ctx.arc(Math.round(这个.x), Math.round(这个 .y), rand(这个.lineWidth,这个.lineWidth 3)/2, 0, Math.PI*2, false)  self.ctx.closePath(); var randAlpha = rand(50,100)/100;   
  22.                 self.ctx.fillStyle = 'hsla(' 这个.hue ' , 100%, '这个.亮度 '%, ' randAlpha ' )';   
  23.                 self.ctx.fill();   
  24.             }       
  25.         }   
  26.     };  

某个JS代码的功能是实现烟花爆炸后的小颗粒的均匀性,从draw方法中可以看出,创建几个随机点,烟花颗粒就可以在这个范围的随机点中散落。

JavaScript 代码 将内容复制到剪切板
  1. var Firework = 函数(startX, startY, targetX, targetY){ 这个.x = startX; 这个.y = startY; 这个.startX = startX; 这个.startY = startY; 这个.hitX = false这个.hitY = 这个.coordLast = [   
  2.             {x: startX, y: startY},   
  3.             {x: startX, y: startY},   
  4.             {x: startX, y: startY}   
  5.         ]; 这个.targetX = targetX; 这个.targetY = targetY; 这个.speed = self.fworkSpeed; 这个.angle = Math.atan2(targetY - startY, targetX - startX); 这个.shockwaveAngle = Math.atan2(targetY - startY, targetX - startX) (90*(Math.PI/180)); 这个.acceleration = self.fworkAccel/100; 这个.hue = self.currentHue; 这个.brightness = rand(50, 80); 这个.alpha = rand(50,100)/100; 这个.lineWidth = self.lineWidth; 这个.targetRadius = 1;   
  6.     };   
  7.   
  8.     Firework.prototype.update = 函数(索引){   
  9.         self.ctx.lineWidth = 这个.lineWidth;   
  10.   
  11.         vx = Math.cos(这个.angle) * 这个.speed,   
  12.         vy = Math.sin(这个.angle) * 这个.speed; 这个.速度*= 1   这个.加速度; 这个.coordLast[2].x = 这个.coordLast[1].x; 这个.coordLast[2].y = 这个.coordLast[1].y; 这个.coordLast[1].x = 这个.coordLast[0].x; 这个.coordLast[1].y = 这个.coordLast[0].y; 这个.coordLast[0].x = 这个.x; 这个.coordLast[0].y = 这个.y; if(self.showTarget){ if(这个.targetRadius (这个
  13. .targetRadius 8){ 
  14. 这个.targetRadius = .25 * self.dt;                } 其他 { 这个.targetRadius = 1 * self.dt;       
  15.             }   
  16.         } if(这个.startX >= 这个.targetX){ if(这个.x   vx 这个.targetX){ 这个.x = 这个.targetX; 这个.hitX = true;   
  17.             } 其他 { 这个.x  = vx * self.dt;   
  18.             }   
  19.         } 否则 { 如果(这个.x vx >= 这个.targetX){ 这个.x = 这个 .targetX; 这个.hitX = true;   
  20.             } 其他 { 这个.x  = vx * self.dt;   
  21.             }   
  22.         } 如果(这个.startY >= 这个.targetY){ if(这个.y   vy 这个.targetY){ 这个.y = 这个.targetY; 这个.hitY = true;   
  23.             } 其他 { 这个.y  = vy * self.dt;   
  24.             }   
  25.         } 否则 { 如果(这个.y vy >= 这个.targetY){ 这个.y = 这个 .targetY; 这个.hitY = true;   
  26.             } 其他 { 这个.y  = vy * self.dt;   
  27.             }   
  28.         } 如果(这个.hitX && 这个.hiTY){  var randExplosion = rand(0, 9);   
  29.             self.createParticles(这个.targetX, 这个.targetY, 这个.色调);   
  30.             self.fireworks.splice(index, 1);                       
  31.         }   
  32.     };   
  33.   
  34.     Firework.prototype.draw = 函数(){   
  35.         self.ctx.lineWidth = 这个.lineWidth; var coordRand = (rand(1,3)-1);                       
  36.         self.ctx.beginPath();                               
  37.         self.ctx.moveTo(Math.round(这个.coordLast[coordRand].x), Math.round(这个.coordLast[coordRand].y));   
  38.         self.ctx.lineTo(Math.round(这个.x), Math.round(这个 .y));   
  39.         self.ctx.closePath();   
  40.         self.ctx.tripStyle = 'hsla(' 这个.hue ' , 100%, '这个.亮度 '%, '这个.alpha ')';   
  41.         self.ctx.中风(); if(self.showTarget){   
  42.             self.ctx.save();   
  43.             self.ctx.beginPath();   
  44.             self.ctx.arc(Math.round(这个.targetX), Math.round(这个 .targetY), 这个.targetRadius, 0, Math.PI*2, false)   
  45.             self.ctx.closePath();   
  46.             self.ctx.lineWidth = 1;   
  47.             self.ctx.中风();   
  48.             self.ctx.restore();   
  49.         } if(self.showShockwave){   
  50.             self.ctx.save();   
  51.             self.ctx.translate(Math.round(这个.x), Math.round(这个 .y));   
  52.             self.ctx.rotate(这个.shockwaveAngle);   
  53.             self.ctx.beginPath();   
  54.             self.ctx.arc(0, 0, 1*(这个.speed/5), 0, Math.PI, 正确);   
  55.             self.ctx.strokeStyle = 'hsla(' 这个.hue ' , 100%, ' 这个.亮度 '%, ' 兰特(25, 60)/100 ')';   
  56.             self.ctx.lineWidth = 这个.lineWidth;   
  57.             self.ctx.中风();   
  58.             self.ctx.restore();   
  59.         }                                    
  60.     };  

某个JS代码是创建烟花实例的,我们也可以从draw方法中看出,当我们鼠标点击中部的某个点时,烟花发射的目的地就在那个点上。

这个HTML5 Canvas烟花效果的核心代码就是这样,谢谢阅读,希望能帮助到大家,请继续关注脚本之家,我们会努力分享更多优秀的文章。

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn