C'est le Nouvel An chinois, et tout ce à quoi je peux penser pendant le Nouvel An chinois, c'est allumer des feux d'artifice. . . . J'ai donc utilisé Canvas pour écrire un effet de feu d'artifice. Cliquer sur la souris produira également un feu d'artifice, mais ne produira pas trop de feux d'artifice. Les particules émises par un feu d'artifice sont comprises entre 30 et 200. Lorsque le nombre de particules sur la page atteint un certain. Parfois, la page sera très bloquée et je n'ai pas délibérément optimisé Shenma. Parlons-en plus tard quand nous aurons le temps.
Accédez directement à la DÉMO : Déclenchez des feux d'artifice
Le principe est très simple. . . Écrivez simplement une classe de feu d'artifice et une classe de débris, instanciez-la et laissez-la voler. Ensuite, lorsqu'elle atteint un certain point, définissez l'attribut mort de l'objet feu d'artifice sur true, puis instanciez un certain nombre d'objets débris et donnez-le simplement au hasard. un point cible que les débris doivent atteindre, puis laissez tous les débris voler là-bas.
【Feux d'artifice】
Code XML/HTMLCopier le contenu dans le presse-papiers
- var Boom = fonction(x,r,c,boomArea,shape){ / /烟火对象
-
this.booms = [];
-
this.x = x;
-
this.y = (canvas.height r);
-
this.r = r;
-
this.c = c;
-
this.shape = forme || FAUX;
-
this.boomArea = boomArea;
-
this.theta = 0;
-
this.dead = faux;
-
this.ba = parseInt(getRandom(80 , 200));
- }
-
Boom.prototype = {
- _paint:function(){
- ctx.save();
- ctx.beginPath();
- ctx.arc(this.x,this.y,this.r,0,2*Math.PI);
-
ctx.fillStyle = this.c;
- ctx.fill();
- ctx.restore();
- },
- _move:function(){
-
var dx = this.boomArea.x - this.x , dy = this.boomArea.y - this.y;
-
thisthis.x = this.x dx*0.01;
-
thisthis.y = this.y dy*0.01 ;
-
-
if(Math.abs(dx)<=this.ba && Math.abs(dy)< =this.ba){
- if(this.shape){
- this._shapBoom();
- }
- else this._boom();
- this.dead = vrai;
- }
- autre {
- this._paint();
- }
- },
- _drawLight:function(){
- ctx.save();
- ctx.fillStyle = "rgba(255,228,150,0.3)";
- ctx.beginPath();
- ctx.arc(this.x , this.y , this.r 3*Math.random() 1 , 0 , 2*Math.PI);
- ctx.fill();
- ctx.restore();
- },
- _boom:function(){ //普通爆炸
- var fragNum = getRandom(30 , 200);
- var style = getRandom(0,10)> =5 ? 1 : 2 ;
- var color ;
-
if(style===1){
-
couleur = {
- a:parseInt(getRandom(128,255)),
- b:parseInt(getRandom(128,255)),
- c:parseInt(getRandom(128,255))
- }
- }
-
-
var fanwei = parseInt(getRandom(300, 400));
-
pour(var i=0;i<fragNum;i ){
-
if(style===2){
-
couleur = {
- a:parseInt(getRandom(128,255)),
- b:parseInt(getRandom(128,255)),
- c:parseInt(getRandom(128,255))
- }
- }
-
var a = getRandom(-Math.PI, Math.PI);
-
var x = getRandom(0, fanwei) * Math.cos(a) this.x;
-
var y = getRandom(0, fanwei) * Math.sin(a) this.y;
-
var radius = getRandom(0 , 2)
-
var frag = nouveau Frag(this.x , this.y , radius , color , x , y );
- this.booms.push(frag);
- }
- },
- _shapBoom:function(){ //有形状的爆炸
-
var que = ce ;
- putValue(ocas , octx , this.shape , 5, function(dots){
-
var dx = canvas.width/2-that.x;
-
var dy = toile.height/2-that.y;
-
pour(var i=0;i<dots.length;i ){
-
couleur = {a:dots[i].a,b:dots[i].b,c:dots[i].c}
-
var x = points[i].x;
-
var y = points[i].y;
-
var rayon = 1;
-
var frag = nouveau Frag(that.x , that.y , radius , color , x- dx , y-dy);
- that.booms.push(frag);
- }
- })
- }
- }
【碎屑】
Code XML/HTML复制内容到剪贴板
- var Frag = fonction(centerX , centerY , radius , color ,tx , ty) { //烟火碎屑对象
-
this.tx = tx;
-
this.ty = ty;
-
this.x = centerX;
-
this.y = centerY;
-
this.dead = faux;
-
this.centerX = centerX;
-
this.centerY = centerY;
-
this.radius = rayon ;
-
this.color = couleur;
- }
-
-
Frag.prototype = {
- paint:function(){
- ctx.save();
- ctx.beginPath();
- ctx.arc(this.x , this.y , this.radius , 0 , 2*Math.PI);
-
ctx.fillStyle = "rgba(" this.color.a "," this.color. b "," this.color.c ",1)";
- ctx.fill()
- ctx.restore();
- },
- moveTo:function(index){
-
thisthis.ty = this.ty 0.3 ;
-
var dx = this.tx - this.x , dy = this.ty - this.y;
-
this.x = Math.abs(dx)<0,1 ? this.tx : (this.x dx*0.1) ;
-
this.y = Math.abs(dy)<0,1 ? this.ty : (this.y dy*0.1) ;
-
if(dx===0 && Math.abs(dy)<=80){
-
this.dead = vrai;
- }
- this.paint();
- }
- }
让碎屑产生虚影也很简单,就是每次刷新画布时,不是擦掉重绘,而是绘制透明度为0.1(如果想虚影更长,可以把这个值弄的更小)的背景颜色。然后虚影就可以做出来了。也就是:
Code XML/HTML复制内容到剪贴板
- ctx.save();
-
ctx.fillStyle = "rgba(0,5,24,0.1)";
- ctx.fillRect(0,0,canvas.width,canvas.height);
- ctx.restore();
Laissez les feux d'artifice former la forme que vous souhaitez, comme des polices, des images, etc. C'est également très simple. Vous pouvez le faire via le canevas hors écran et la méthode getImageData du canevas. Le canevas hors écran, comme son nom l'indique, est un canevas invisible. Vous pouvez utiliser document.createElement("canvas") directement dans js pour générer un objet dom canevas tant que l'objet dom n'est pas affecté au corps, ceci. L'objet canevas est équivalent à un objet hors écran. Nous pouvons obtenir l'objet contextuel de ce canevas hors écran, puis faire ce que nous voulons là où l'utilisateur ne peut pas le voir.
Pour donner au feu d'artifice la forme souhaitée, vous dessinez d'abord le texte ou l'image sur le canevas hors écran, puis utilisez getImageData pour obtenir le tableau de pixels sur le canevas, puis parcourez le tableau pour obtenir les pixels colorés, c'est ce que nous voulons. Une fois le contenu enregistré, il est affiché dans l'objet canevas principal.
J'ai parlé du traitement des pixels de getImageData dans mon blog précédent. Si vous ne savez pas comment l'utiliser, veuillez cliquer ici : Parlons de l'utilisation de Canvas pour réaliser la particuleisation du texte et des images
.
Adresse du code source : https://github.com/whxaxes/canvas-test/tree/gh-pages/src/Funny-demo/shotFire