Maison > interface Web > Tutoriel H5 > le corps du texte

Exemple de tutoriel HTML5 Canvas super cool feux d'artifice bloom mise en œuvre de l'animation code_html5 compétences du didacticiel

WBOY
Libérer: 2016-05-16 15:47:16
original
3115 Les gens l'ont consulté

Il s'agit d'une animation HTML5 Canvas sympa. Elle simulera les effets spéciaux animés des feux d'artifice qui fleurissent dans notre vie réelle, mais après tout, c'est une simulation informatique même si vous emmenez votre petite amie le regarder. ça, l'effet est encore un peu médiocre, hehe. Une chose qui est remarquable dans cette animation HTML5 Canvas est sa performance. Il n'y a pratiquement aucun décalage sur Chrome, même si vous déclenchez de nombreux feux d'artifice.

Analysons brièvement le processus et le code pour implémenter cet effet spécial de feu d'artifice HTML5. Il est principalement composé de code HTML, de code CSS et de code Javascript. Bien sûr, le code javascript est le plus important.

 Code HTML :

Code XML/HTMLCopier le contenu dans le presse-papiers
  1. <div id=”gui”>div>
  2. <div id=”canvas-container”> <div id=”mountains2″>div> 
  3. <div id=”montagnes1″ >div><div id=”skyline”>div> div>

La structure du HTML est très simple, c'est-à-dire qu'un conteneur canevas est construit et nous utiliserons JS pour générer un objet Canvas dans ce conteneur. Vous le saurez en regardant le code JS final.

 Code CSS :

Code CSSCopier le contenu dans le presse-papiers
  1. #canvas-conteneur { fond : #000 url(bg.jpg); hauteur : 400px ; gauche : 50 % ; marge : -200px 0 0 -300px ; position : absolue ; haut : 50 % ; largeur : 600px ; z-index : 2 ;   
  2. } toile { curseur : réticule ; affichage : blocage ; position : relative ; z-index : 3 ;   
  3. } canvas:active { curseur : réticule ;   
  4. #skyline { arrière-plan : url (skyline.png) répéter-x 50 % 0 ; basbas : 0 ; hauteur : 135px ; gauche : 0 ; position : absolue ; largeur : 100 % ; z-index : 1 ;       
  5. #mountains1 { arrière-plan : url (mountains1.png) répéter-x 40% 0 ; basbas : 0 ; hauteur : 200px ; gauche : 0 ; position : absolue ; largeur : 100 % ; z-index : 1 ;       
  6. #mountains2 { arrière-plan : url (mountains2.png) répéter-x 30% 0 ; basbas : 0 ; hauteur : 250px ; gauche : 0 ; position : absolue ; largeur : 100 % ; z-index : 1 ;       
  7. #gui { droitdroit : 0 ; position : fixe ; haut : 0 ; z-index : 3 ;   
  8. }  

Le code CSS n'a rien de spécial, il définit principalement la couleur de fond et la bordure.

Vient ensuite le code Javascript le plus important.

 Code Javascript :

Code JavaScriptCopier le contenu dans le presse-papiers
  1. self.init = fonction(){       
  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 = function() { return false;   
  7.         };   
  8.   
  9.         self.canvas.width = self.cw = 600;   
  10.         self.canvas.height = self.ch = 400;       
  11.   
  12.         self.particles = [];       
  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 = 'rond';   
  36.         self.ctx.lineJoin = 'rond';   
  37.         self.lineWidth = 1;   
  38.         self.bindEvents();               
  39.         self.canvasLoop();   
  40.   
  41.         self.canvas.onselectstart = function() { return false;   
  42.         } ;   
  43.   
  44.     } ;  

Ce code JS construit principalement un objet Canvas dans le conteneur Canvas et initialise les propriétés d'apparence et d'animation de l'objet Canvas.

Code JavaScriptCopier le contenu dans le presse-papiers
  1. var Particle = fonction(x, y, teinte){ ce.x = x ; ce.y = y ; this.coordLast = [   
  2.             {x: x, y: y},   
  3.             {x: x, y: y},   
  4.             {x: x, y: y}   
  5.         ]; ce.angle = rand(0, 360); ce.speed = rand(((self.partSpeed - self.partSpeedVariance) <= 0) ? 1 : self.partSpeed - self.partSpeedVariance, (self.partSpeed   self. partSpeedVariance)); this.friction = 1 - self.partFriction/100 ; this.gravity = self.partGravity/2; this.hue = rand(hue-self.hueVariance, hue self.hueVariance); ce.brightness = rand(50, 80); ce.alpha = rand(40,100)/100 ; ce.decay = rand(10, 50)/1000 ; this.wind = (rand(0, self.partWind) - (self.partWind/2))/25; this.lineWidth = self.lineWidth;   
  6.     };   
  7.   
  8.     Particle.prototype.update = fonction(index){ var radians =  ceci.angle * Math.PI / 180 ; var vx = Math.cos(radians) * ce.speed; var vy = Math.sin(radians) * ce.speed   ce .pesanteur; ce.speed *= ce.friction ; ce.coordLast[2].x = ce.coordLast[1].x; ce.coordLast[2].y = ce.coordLast[1].y; ce.coordLast[1].x = ce.coordLast[0].x; ce.coordLast[1].y = ce.coordLast[0].y; ceci.coordLast[0].x = ceci.x; ce.coordLast[0].y = ce.y; ce.x  = vx * self.dt; ce.y  = vy * self.dt; ce.angle  = ce.wind; ce.alpha -= ce.decay; if(!hitTest(0,0,self.cw,self.ch,this.x-ce.radius, ce.y-ce.radius, ce .radius*2, ce.radius*2) ||  ce.alpha < ){                       
  9.             self.particles.splice(index, 1);       
  10.         }                
  11.     };   
  12.   
  13.     Particle.prototype.draw = function(){ var coordRand = (rand(1,3) -1);   
  14.         self.ctx.beginPath();                                   
  15.         self.ctx.moveTo(Math.round(this.coordLast[coordRand].x), Math.round(this.coordLast[coordRand].y));   
  16.         self.ctx.lineTo(Math.round(ce.x), Math.round(ce .y));   
  17.         self.ctx.closePath();                   
  18.         self.ctx.StrokeStyle = 'hsla(' ce.hue ' , 100 %, ' ce.luminosité '%, ' ce.alpha ')';   
  19.         self.ctx.Stroke(); if(self.flickerDensity > 0){ var inverseDensity = 50 - self.flickerDensity; if(rand(0, inverseDensity) === inverseDensity){   
  20.                 self.ctx.beginPath();   
  21.                 self.ctx.arc(Math.round(this.x), Math.round(this .y), rand(this.lineWidth,this.lineWidth 3)/2, 0, Math.PI*2, false)  self.ctx.closePath(); var randAlpha = rand(50,100)/100;   
  22.                 self.ctx.fillStyle = 'hsla(' this.hue ' , 100 %, ' ce.luminosité '%, ' randAlpha ' )';   
  23.                 self.ctx.fill();   
  24.              }       
  25.         }   
  26.     } ;  

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

Code JavaScript复制内容到剪贴板
  1. var Firework = fonction(startX, startY, targetX, targetY){ this.x = startX ; ce.y = startY; ce.startX = startX ; ce.startY = startY ; ce.hitX = fauxthis.hitY = falsethis.coordLast = [   
  2.             {x: startX, y: startY},   
  3.             {x: startX, y: startY},   
  4.             {x: startX, y: startY}   
  5.         ]; ce.targetX = targetX ; ce.targetY = targetY ; this.speed = self.fworkSpeed ; this.angle = Math.atan2(targetY - startY, targetX - startX); this.shockwaveAngle = Math.atan2(targetY - startY, targetX - startX) (90*(Math.PI/180)); this.acceleration = self.fworkAccel/100; this.hue = self.currentHue; ce.brightness = rand(50, 80); ce.alpha = rand(50,100)/100 ; this.lineWidth = self.lineWidth; ce.targetRadius = 1 ;   
  6.     } ;   
  7.   
  8.     Firework.prototype.update = fonction(index){   
  9.         self.ctx.lineWidth = this.lineWidth;   
  10.   
  11.         vx = Math.cos(ce.angle) * ce.vitesse,   
  12.         vy = Math.sin(ce.angle) * ce.vitesse ; cette.vitesse *= 1   cette.accélération ; ce.coordLast[2].x = ce.coordLast[1].x; ce.coordLast[2].y = ce.coordLast[1].y; ce.coordLast[1].x = ce.coordLast[0].x; ce.coordLast[1].y = ce.coordLast[0].y; ceci.coordLast[0].x = ceci.x; ce.coordLast[0].y = ce.y; if(self.showTarget){ if(this.targetRadius < 8){ this.targetRadius  = .25 * self.dt;   
  13.              } else { this.targetRadius = 1 * self.dt;       
  14.              }   
  15.         } si(ce.startX >= ce.targetX){ if(this.x   vx <= this.targetX){ ce.x = ce.targetX; ce.hitX = vrai;   
  16.             } autre { ceci.x  = vx * self.dt;   
  17.              }   
  18.         } else { if(this.x vx >= ce.targetX){ ce.x = ce .cibleX ; ce.hitX = vrai ;   
  19.             } autre { ceci.x  = vx * self.dt;   
  20.              }   
  21.         } si(ce.startY >= ce.targetY){ if(this.y   vy <= this.targetY){ this.y = this.targetY; ce.hitY = vrai;   
  22.             } autre { ceci.y  = vy * self.dt;   
  23.              }   
  24.         } else { if(this.y vy >= ce.targetY){ ce.y = ce .targetY; ce.hitY = vrai;   
  25.             } autre { ceci.y  = vy * self.dt;   
  26.              }   
  27.         } si(ce.hitX && ce.hitY){  var randExplosion = rand(0, 9);   
  28.             self.createParticles(ce.targetX, ce.targetY, ce.hue);   
  29.             self.fireworks.splice(index, 1);                       
  30.         }   
  31.     } ;   
  32.   
  33.     Firework.prototype.draw = fonction(){   
  34.         self.ctx.lineWidth = this.lineWidth; var coordRand = (rand(1,3)-1);                       
  35.         self.ctx.beginPath();                               
  36.         self.ctx.moveTo(Math.round(this.coordLast[coordRand].x), Math.round(this.coordLast[coordRand].y));   
  37.         self.ctx.lineTo(Math.round(ce.x), Math.round(ce .y));   
  38.         self.ctx.closePath();   
  39.         self.ctx.StrokeStyle = 'hsla(' ce.hue ' , 100 %, ' ce.luminosité '%, ' ce.alpha ')';   
  40.         self.ctx.Stroke(); if(self.showTarget){   
  41.             self.ctx.save();   
  42.             self.ctx.beginPath();   
  43.             self.ctx.arc(Math.round(this.targetX), Math.round(this .targetY), this.targetRadius, 0, Math.PI*2, false)   
  44.             self.ctx.closePath();   
  45.             self.ctx.lineWidth = 1;   
  46.             self.ctx.Stroke();   
  47.             self.ctx.restore();   
  48.         } si(self.showShockwave){   
  49.             self.ctx.save();   
  50.             self.ctx.translate(Math.round(this.x), Math.round(this .y));   
  51.             self.ctx.rotate(this.shockwaveAngle);   
  52.             self.ctx.beginPath();   
  53.             self.ctx.arc(0, 0, 1*(this.speed/5), 0, Math.PI,  vrai);   
  54.             self.ctx.StrokeStyle = 'hsla(' ce.hue ' , 100 %, ' ce.luminosité '%, ' rand(25, 60)/100 ')';   
  55.             self.ctx.lineWidth = this.lineWidth;   
  56.             self.ctx.Stroke();   
  57.             self.ctx.restore();   
  58.         }                                   
  59.     } ;  

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

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

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!