Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
DANGER
黑龙江省七台河市
关注作者
(0)
收藏此代码
(59)
← jq单行滚动
→ js输入敏感词验证
相关代码
canvas
小球
自由落体
canvas
小球
喷射
canvas
多个
小球
运动
绚丽的
小球
时间跳动
canvas
小球
碰撞
canvas
粒子动画
canvas
探照灯效果clip()原创
Html
Css
Js
* { margin:0; padding:0; }
let canvas = document.getElementById("canves"); let Gravity = 0.8; let Firction = 0.9; function randomIntFronRange(low, high) { return Math.floor(Math.random() * (high - low + 1) + low) } canvas.width = window.innerWidth; canvas.Height = window.innerHeight; let ctx = canvas.getContext("2d"); let colorArray = ["rgb(83,126,255)", "rgb(3,35,128)", "rgb(6,69,255)", "rgb(41,63,128)", "rgb(11,56,255)"] // var mouse = {}; // let maxRadius = 26; document.addEventListener("mousedown", function(event) { ctx.clearRect(0, 0, canvas.width, canvas.Height); init(); }); document.addEventListener("resize", function() { canvas.width = window.innerWidth; canvas.Height = window.innerHeight; init(); }) function Ball(x, y, dx, dy, radius, color) { this.x = x; this.y = y; this.dy = dy this.dx = dx; this.radius = radius; this.color = color; this.draw = function() { ctx.beginPath(); ctx.arc(this.x, this.y, this.radius, 0, 2 * Math.PI); ctx.fillStyle = this.color; ctx.fill(); ctx.closePath(); } this.update = function() { if (this.y + this.radius + this.dy + Gravity > canvas.height) { this.dy = -this.dy; this.dy *= Firction; this.dx *= Firction; } else { this.dy += Gravity; } if (this.x + this.radius + this.dx >= canvas.width || this.x - this.radius + this.dx <= 0) { this.dx = -this.dx; } this.y += this.dy; this.x += this.dx; // if (this.x + this.radius > canvas.width || this.x - this.radius < 0) { // this.dx = -this.dx // } // if (this.y + this.radius > canvas.Height || this.y - this.radius < 0) { // this.dy = -this.dy; // } // this.x += this.dx; // this.y += this.dy; this.draw(); // if (mouse.x - this.x < 50 && mouse.x - this.x > -50 && mouse.y - this.y < 50 && mouse.y - this.y > - // 50) { // if (this.radius < maxRadius) { // this.radius += 1; // } // } else if (this.radius > this.minRadius) { // this.radius -= 1 // } } } // let ball = new Ball(canvas.width / 2, canvas.height / 2, 10, 100, "blue"); let ballArray = []; function init() { for (let i = 0; i < 366; i++) { // let radius = Math.random() * 1 + 5; let radius = randomIntFronRange(2, 8); let x = randomIntFronRange(radius, canvas.width - radius) // let x = Math.random() * (canvas.width - 2 * radius) + radius; // let y = Math.random() * (canvas.Height - 2 * radius) + radius; let y = randomIntFronRange(radius, canvas.height - radius); let dx = randomIntFronRange(-5, 5); let dy = randomIntFronRange(1, 2) // let dy = Math.random() * 5 + 10; let color = colorArray[Math.floor(Math.random() * 5)]; ballArray.push(new Ball(x, y, dx, dy, radius, color)); } } init(); function animation() { requestAnimationFrame(animation); ctx.clearRect(0, 0, canvas.width, canvas.Height); //ball.update(); for (let n of ballArray) { n.update(); //n.draw(); } } animation(); // let run = function () { // // ctx.clearRect(0,0,canvas.Width,canvas.Height); // num++; // } // run(); // setInterval(run,10);
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.11.3
立即下载
canvas小球自由落体
代码描述:小球自由落体下降
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号