Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
→_→
四川省成都市
关注作者
(7)
收藏此代码
(99)
← js多图片展开收缩
→ canvas做旋转大风车
相关代码
canvas
粒子
动画
简单的
粒子
动画
canvas
粒子
特效
canvas
彩球 (原创)
canvas
旋转球
canvas
鼠标跟随代码
canvas
点光
Html
Css
Js
html { width:100%; height:100%; } body { height:100%; width:100%; } * { margin:0; padding:0; }
let canvas = document.getElementById("myCanvas"); let height = canvas.height = document.body.clientHeight; let width = canvas.width = document.body.clientWidth; let ctx = canvas.getContext("2d"); //生成随机数 function random(min, max) { return Math.floor(Math.random() * (max - min) + min); } //随机颜色 function randomColor() { return `rgba(${random(0,255)},${random(0,255)},${random(0,255)},1)`; //return `rgb(255,255,255)` } //小球类 function Ball(x, y, vx, vy, color, size) { this.x = x; this.y = y; this.vx = vx; this.vy = vy; this.color = color; this.size = size; } //绘制 Ball.prototype.draw = function() { ctx.beginPath(); ctx.fillStyle = this.color; ctx.arc(this.x, this.y, this.size, 0, 2 * Math.PI); ctx.fill(); } Ball.prototype.update = function() { if ((this.x + this.size) >= width || (this.x - this.size) <= 0) { this.vx = -this.vx; } if ((this.y + this.size) >= height || (this.y - this.size) <= 0) { this.vy = -this.vy; } this.x += this.vx; this.y += this.vy } var list = []; for (let i = 0; i <= 200; i++) { let c = new Ball( random(1, width), random(1, height), random(-3, 3) * (1 / 5.0), random(-3, 3) * (1 / 5.0), randomColor(), random(2, 10) ); list.push(c); } //循环绘制 loop = () => { ctx.fillStyle = "rgb(0,0,0)"; ctx.fillRect(0, 0, width, height); for (let i = 0; i < list.length; i++) { for (let j = 0; j < list.length; j++) { let Lx = Math.abs(list[j].x - list[i].x); let Ly = Math.abs(list[j].y - list[i].y); let LL = Math.sqrt(Math.pow(Lx, 2) + Math.pow(Ly, 2)); if (LL <= 80) { ctx.beginPath(); ctx.strokeStyle = `rgba(255,255,255,${(80-LL)/80})` ctx.moveTo(list[i].x, list[i].y); ctx.lineTo(list[j].x, list[j].y); ctx.stroke(); } } list[i].draw(); list[i].update() } requestAnimationFrame(loop); } loop()
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.11.3
立即下载
canvas粒子特效
代码描述:这是一个简单的粒子特效demo,实现逻辑比较简单
0
最新
发表评论
全部评论
暂时没有评论!
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>canvas粒子特效-jq22.com</title> <script src="https://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号