Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
他の她
广东省东莞市
关注作者
(0)
收藏此代码
(17)
← 按钮填充代码
→ 鼠标悬停滑动效果
相关代码
canvas
粒子
动画
canvas
粒子
线
canvas
粒子
连线
canvas
特效
粒子
跟随鼠标移动效果
canvas
彩球 (原创)
canvas
鼠标跟随
代码
简单的
粒子
动画
Html
Css
Js
#canvas { display:block; }
function fn1() { let canvas = document.getElementById('canvas'); let ctx = canvas.getContext('2d'); let w = canvas.width = window.innerWidth; let h = canvas.height = window.innerHeight; window.addEventListener('resize', function(event) { w = canvas.width = window.innerWidth; h = canvas.height = window.innerHeight; }); function random(min, max) { return Math.random() * (max - min) + min; } function xq(x, y, dx, dy, radius, color) { this.x = x; this.y = y; this.dx = dx; this.dy = dy; this.radius = radius; this.color = color; this.draw = function() { ctx.beginPath(); ctx.arc(this.x, this.y, this.radius, 0, 2 * Math.PI, false) ctx.fillStyle = this.color; ctx.fill(); ctx.closePath(); } this.updata = function() { if (this.x + this.radius > w || this.x - this.radius < 0) { this.dx = -this.dx; } if (this.y + this.radius > h || this.y - this.radius < 0) { this.dy = -this.dy; } this.x += this.dx; this.y += this.dy; this.draw(); } } let items = []; for (let i = 0; i < 500; i++) { let radius = random(3, 5); let x = random(radius / 2, w); let y = random(radius / 2, h); let dx = random(-1, 1); let dy = random(-1, 1); items.push(new xq(x, y, dx, dy, radius, `rgb(${random(0,255)},${random(0,255)},${random(0,255)})`)) } // 动画 function animate() { requestAnimationFrame(animate); // ctx.clearRect(0,0,w,h) ctx.fillStyle = "rgba(255,255,255,0.1)"; ctx.fillRect(0, 0, w, h); for (let b of items) { b.updata(); } } animate(); } fn1();
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
2.1.4
立即下载
canvas粒子动画
代码描述:canvas粒子小球代码
更新时间:2020-12-18 22:36:20
原生js+canvas
0
最新
发表评论
全部评论
暂时没有评论!
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>canvas粒子动画-jq22.com</title> <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号