iis服务器助手广告广告
返回顶部
首页 > 资讯 > 精选 >使用canvas怎么绘制一个烟花效果
  • 702
分享到

使用canvas怎么绘制一个烟花效果

2023-06-09 11:06:37 702人浏览 八月长安
摘要

这期内容当中小编将会给大家带来有关使用canvas怎么绘制一个烟花效果,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。目录结构目录结构大致如下我们将烟花分为两个阶段,一个是未炸开持续上升时期,另一个是炸开后

这期内容当中小编将会给大家带来有关使用canvas怎么绘制一个烟花效果,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

目录结构

目录结构大致如下

使用canvas怎么绘制一个烟花效果

我们将烟花分为两个阶段,一个是未炸开持续上升时期,另一个是炸开后分散的时期。
其中Vector表示一个坐标,Particle表示一个烟花的亮点,Firewor表示烟花未炸开时持续上升的亮点。index.tsx就是组件了,绘制了canvas,并执行了动画。

Vector

这个坐标就很简单,后面涉及到位置的变更都可以使用它的add方法进行偏移操作

export default class Vector {    constructor(public x: number, public y: number) {}    add(vec2: {x: number; y: number}) {        this.x = this.x + vec2.x;        this.y = this.y + vec2.y;    }}

Particle

初始创建的时候给个坐标,后续每次更新的时候控制y坐标下落,gravity变量就是下落的值。timeSpan用于控制烟花展示的时长

import Vector from './Vector';export default class Particle {    pos: Vector = null;    vel: {x: number; y: number} = null;    dead: boolean = false;    start: number = 0;    ctx: CanvasRenderinGContext2D = null;    constructor(pos: {x: number; y: number}, vel: {x: number; y: number}, ctx: CanvasRenderingContext2D) {        this.pos = new Vector(pos.x, pos.y);        this.vel = vel;        this.dead = false;        this.start = 0;        this.ctx = ctx;    }    update(time: number, gravity: number) {        let timeSpan = time - this.start;        if (timeSpan > 500) {            this.dead = true;        }        if (!this.dead) {            this.pos.add(this.vel);            this.vel.y = this.vel.y + gravity;        }    }    draw() {        if (!this.dead) {            this.drawDot(this.pos.x, this.pos.y, Math.random() > 0.5 ? 1 : 2);        }    }    drawDot(x: number, y: number, size: number) {        this.ctx.beginPath();        this.ctx.arc(x, y, size, 0, Math.PI * 2);        this.ctx.fill();        this.ctx.closePath();    }}

Firework

生成随机的hsl颜色,hsl(' + rndNum(360) + ', 100%, 60%);Firework每次上升的距离是一个递减的过程,我们初始设置一个上升的距离,之后每次绘制的时候,这个距离减gravity,当距离小于零的时候,说明该出现烟花绽放的动画了。

import Vector from './Vector';import Particle from './Particle';let rnd = Math.random;function rndNum(num: number) {    return rnd() * num + 1;}export default class Firework {    pos: Vector = null;    vel: Vector = null;    color: string = null;    size: number = 0;    dead: boolean = false;    start: number = 0;    ctx: CanvasRenderingContext2D = null;    gravity: number = null;    exParticles: Particle[] = [];    exPLen: number = 100;    rootShow: boolean = true;    constructor(x: number, y: number, gravity: number, ctx: CanvasRenderingContext2D) {        this.pos = new Vector(x, y);        this.vel = new Vector(0, -rndNum(10) - 3);        this.color = 'hsl(' + rndNum(360) + ', 100%, 60%)';        this.size = 4;        this.dead = false;        this.start = 0;        this.ctx = ctx;        this.gravity = gravity;    }    update(time: number, gravity: number) {        if (this.dead) {            return;        }        this.rootShow = this.vel.y < 0;        if (this.rootShow) {            this.pos.add(this.vel);            this.vel.y = this.vel.y + gravity;        } else {            if (this.exParticles.length === 0) {                for (let i = 0; i < this.exPLen; i++) {                    let randomR = rndNum(5);                    let randomX = -rndNum(Math.abs(randomR) * 2) + Math.abs(randomR);                    let randomY =                        Math.sqrt(Math.abs(Math.pow(randomR, 2) - Math.pow(randomX, 2))) *                        (Math.random() > 0.5 ? 1 : -1);                    this.exParticles.push(new Particle(this.pos, new Vector(randomX, randomY), this.ctx));                    this.exParticles[this.exParticles.length - 1].start = time;                }            }            let numOfDead = 0;            for (let i = 0; i < this.exPLen; i++) {                let p = this.exParticles[i];                p.update(time, this.gravity);                if (p.dead) {                    numOfDead++;                }            }            if (numOfDead === this.exPLen) {                this.dead = true;            }        }    }    draw() {        if (this.dead) {            return;        }        this.ctx.fillStyle = this.color;        if (this.rootShow) {            this.drawDot(this.pos.x, this.pos.y, this.size);        } else {            for (let i = 0; i < this.exPLen; i++) {                let p = this.exParticles[i];                p.draw();            }        }    }    drawDot(x: number, y: number, size: number) {        this.ctx.beginPath();        this.ctx.arc(x, y, size, 0, Math.PI * 2);        this.ctx.fill();        this.ctx.closePath();    }}

FireworkComponent

组件本身就很简单了,生成和绘制Firework。我们在这里面可以额外加一些文字

import React from 'react';import Firework from './Firework';import {autobind} from 'core-decorators';let rnd = Math.random;function rndNum(num: number) {    return rnd() * num + 1;}interface PropTypes {    onClick?: () => void;}@autobindclass FireworkComponent extends React.Component<PropTypes> {    canvas: htmlCanvasElement = null;    ctx: CanvasRenderingContext2D = null;    snapTime: number = 0;    fireworks: Firework[] = [];    gravity: number = 0.1;    componentDidMount() {        this.canvas = document.querySelector('#fireworks');        this.canvas.width = window.innerWidth;        this.canvas.height = window.innerHeight;        this.ctx = this.canvas.getContext('2d');        this.init();        this.draw();    }    init() {        let numOfFireworks = 20;        for (let i = 0; i < numOfFireworks; i++) {            this.fireworks.push(new Firework(rndNum(this.canvas.width), this.canvas.height, this.gravity, this.ctx));        }    }    update(time: number) {        for (let i = 0, len = this.fireworks.length; i < len; i++) {            let p = this.fireworks[i];            p.update(time, this.gravity);        }    }    draw(time?: number) {        this.update(time);        this.ctx.fillStyle = 'rgba(0,0,0,0.3)';        this.ctx.fillStyle = 'rgba(0,0,0,0)';        this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);        this.ctx.font = 'bold 30px cursive';        this.ctx.fillStyle = '#e91818';        let text = 'XX项目组给您拜个早年!';        let textWidth = this.ctx.measureText(text);        this.ctx.fillText(text, this.canvas.width / 2 - textWidth.width / 2, 200);        text = '在新年来临之际,祝您:';        textWidth = this.ctx.measureText(text);        this.ctx.fillText(text, this.canvas.width / 2 - textWidth.width / 2, 260);        text = '工作顺利,新春快乐!';        this.ctx.font = 'bold 48px STCaiyun';        this.ctx.fillStyle = 'orangered';        textWidth = this.ctx.measureText(text);        this.ctx.fillText(text, this.canvas.width / 2 - textWidth.width / 2, 340);        this.ctx.fillStyle = 'gray';        this.ctx.font = '18px Arial';        text = '点击任意处关闭';        textWidth = this.ctx.measureText(text);        this.ctx.fillText(text, this.canvas.width - 20 - textWidth.width, 60);        this.snapTime = time;        this.ctx.fillStyle = 'blue';        for (let i = 0, len = this.fireworks.length; i < len; i++) {            let p = this.fireworks[i];            if (p.dead) {                p = this.fireworks[i] = new Firework(                    rndNum(this.canvas.width),                    this.canvas.height,                    this.gravity,                    this.ctx                );                p.start = time;            }            p.draw();        }        window.requestAnimationFrame(this.draw);    }    render() {        return (            <canvas                id="fireworks"                onClick={this.props.onClick}                style={{position: 'fixed', zIndex: 99, background: 'rgba(0,0,0, 0.8)'}}                width="400"                height="400"></canvas>        );    }}export default FireworkComponent;

上述就是小编为大家分享的使用canvas怎么绘制一个烟花效果了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注编程网精选频道。

--结束END--

本文标题: 使用canvas怎么绘制一个烟花效果

本文链接: https://www.lsjlt.com/news/255825.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • c#程序自启动怎么设置
    c# 程序的自启动方法有三种:注册表:在指定注册表项下创建新值,并将其设置为程序可执行文件路径。任务计划程序:创建一个新任务,并在触发器和动作部分分别指定登录时或特定时间触发,以及启动程...
    99+
    2024-05-14
    c#
  • c#怎么调用dll文件
    可在 c# 中轻松调用 dll 文件:引用 dll(使用 dllimport 特性)定义与 dll 函数签名匹配的函数原型调用 dll 函数(如同 c# 函数)附加技巧:使用 chars...
    99+
    2024-05-14
    c#
  • 如何构建 Golang RESTful API,并实现 CRUD 操作?
    通过创建 golang 项目并安装必要的包,我们可以构建一个功能齐全的 restful api。它使用 mysql 数据库进行 crud 操作:1. 创建和连接数据库;2. 定义数据结构...
    99+
    2024-05-14
    go crud mysql git golang
  • c#怎么添加类文件
    在c#中添加类文件的步骤:1. 创建新项目,2. 添加新类,3. 为类添加代码,4. 在另一个类中引用新类。using语句引用类文件所在的命名空间;new运算符创建类的新实例;点运算符访...
    99+
    2024-05-14
    c#
  • 使用 C++ 构建高性能服务器架构的最佳实践
    遵循 c++++ 中构建高性能服务器架构的最佳实践可以创建可扩展、可靠且可维护的系统:使用线程池以重用线程,提高性能。利用协程减少上下文切换和内存开销,提升性能。通过智能指针和引用计数优...
    99+
    2024-05-14
    c++ 高性能服务器架构 数据访问
  • c#怎么添加字段
    在 c# 中添加字段包括以下步骤:声明字段:在类或结构中使用 字段类型 字段名; 语法声明字段。访问修饰符:用于限制对字段的访问,如 private、public、protected 和...
    99+
    2024-05-14
    c#
  • c#中怎么添加引用
    c# 中添加引用的方法有四种:使用 nuget 包管理器添加软件包。添加项目引用以包含其他项目。手动编辑项目文件 (.csproj) 以添加引用。从编译器命令行使用 /reference...
    99+
    2024-05-14
    c#
  • c#怎么创建文本文件
    在 c# 中创建文本文件的方法包括:创建 filestream 对象以打开或创建文件。使用 streamwriter 写入文本至文件。关闭 streamwriter 对象释放资源。关闭 ...
    99+
    2024-05-14
    c#
  • c#怎么定义属性
    如何在 c# 中定义属性 属性是一种编程构造,它包含一个 get 访问器和一个 set 访问器,允许以一种类属性的方式访问字段。它们提供了一种安全且封装的方式来访问和修改类的内部数据。 ...
    99+
    2024-05-14
    c#
  • 基于 C++ 的服务器架构的安全性考虑因素
    在设计基于 c++++ 的服务器架构时,安全考虑至关重要:使用 std::string 或 std::vector 避免缓冲区溢出。使用正则表达式或库函数验证用户输入。采用输出转义防止跨...
    99+
    2024-05-14
    安全性 关键词: c++ 服务器架构 c++ lsp
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作