canvas小球
小球碰撞效果是采用面向对象的方式写的,在小球的构造器里包含了小球的属性值,大小,移动速度,半径大小以及颜色。 在小球的原型方法里,添加了小球运动的方法,当小球碰撞到屏幕边界的时候进行反弹。 小球是采用h5的canvas绘制,采用了性能更高的requestanimationframe作为计时器,该计时器是以屏幕的刷新率作基准,CPU占用较少,性能比settimeout以及setinterval性能更高, |
|
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Ball</title> | |
<style> | |
html, | |
body { | |
margin: 0; | |
padding: 0; | |
width: 100%; | |
height: 100%; | |
} | |
canvas { | |
background: #000; | |
} | |
</style> | |
</head> | |
<body> | |
<canvas id='canv'>您的浏览器不支持CANVAS,请更换浏览器!!!</canvas> | |
<script> | |
document.addEventListener('resize', resize) | |
function resize() {//监听屏幕缩放 | |
canvs.width = window.innerWidth; | |
canvs.height = window.innerHeight; | |
} | |
var canvs = document.getElementById('canv'); | |
canvs.width = window.innerWidth; | |
canvs.height = window.innerHeight; | |
var ctx = canvs.getContext('2d');//获得canvas绘图环境 | |
var ball = function () {//小球构造器 | |
this.bx = Math.random() * canvs.width;//小球x轴的位置 | |
this.by = Math.random() * canvs.height;//小球y轴的位置 | |
this.r = Math.random() * 20 + 10;//小球的半径 | |
this.color = 'rgba('+Math.ceil (Math.random()*255)+','+Math.ceil (Math.random()*255)+','+Math.ceil (Math.random()*255)+','+Math.random()/4+')'//小球的颜色 | |
this.vx = Math.random() *10-5;//小球的x轴方向的运动速度 | |
this.vy = Math.random() *4-2;//小球y轴方向的速度 | |
} | |
ball.prototype.draw = function () {//小球绘制方法 | |
// ctx.fillStyle = 'rgba(255,255,255,0.1)'; | |
// ctx.fillRect(0, 0, canvs.width, canvs.height); | |
// ctx.clearRect(0, 0, canvs.width, canvs.height); | |
ctx.beginPath();//开始路径 | |
var grd=ctx.createRadialGradient(this.bx,this.by,0,this.bx,this.by,this.r);//生成小球径向渐变色 | |
grd.addColorStop(0,"white");//里面的颜色 | |
grd.addColorStop(1,this.color);//外界的颜色 | |
ctx.globeAlpha=0.2;//透明度 | |
// Fill with gradient | |
ctx.fillStyle=grd;//以渐变色填充小球 | |
ctx.arc(this.bx, this.by, this.r, 0, Math.PI * 2, true);//画圆函数 | |
ctx.fill() | |
} | |
ball.prototype.move = function () {//小球的移动方法 | |
this.bx += this.vx; | |
this.by += this.vy; | |
// ball.vy *= 0.99; | |
// ball.vy += 0.25; | |
if (this.by + this.vy > canvs.height || this.by + this.vy < 0) { | |
this.vy = -this.vy;//边界判定,到边界后反向弹 | |
// | |
} | |
if (this.bx + this.vx > canvs.width || this.bx + this.vx < 0) { | |
this.vx = -this.vx; | |
// nball.color = '#' + ('00000' + ((Math.random() * 16777215))) | |
} | |
} | |
function gogo(num) { | |
num= num||10; | |
var globe = []; | |
for (var i = 0; i < num; i++) { | |
var nball = new ball(); | |
globe.push(nball) | |
// nball.draw() | |
} | |
console.log(globe) | |
function ballmove(){ | |
// ctx.fillStyle = 'rgba(255,255,255,0.3)'; | |
// ctx.fillRect(0, 0, canvs.width, canvs.height); | |
ctx.clearRect(0, 0, canvs.width, canvs.height); | |
for (var j = globe.length - 1; j >= 0; j--) { | |
// globe[j].draw() | |
globe[j].move(); | |
globe[j].draw() | |
} | |
window.requestAnimationFrame(ballmove) | |
} | |
ballmove() | |
} | |
gogo(100) | |
// function drawcrc() { | |
// // ctx.fillStyle = 'rgba(255,255,255,0.3)'; | |
// // ctx.fillRect(0, 0, canvs.width, canvs.height); | |
// ctx.clearRect(0, 0, canvs.width, canvs.height); | |
// var nball = new ball(); | |
// nball.draw(); | |
// window.requestAnimationFrame(drawcrc) | |
// } | |
// drawcrc(); | |
</script> | |
</body> | |
</html> |
canvas小球的更多相关文章
- h5 canvas 小球移动
h5 canvas 小球移动 <!DOCTYPE html> <html lang="en"> <head> <meta charset= ...
- canvas小球动画原理
随着html5发展,canvas标签作为h5革命性的发展标志也越来越流行.canvas标签的强大之处,不仅在于它可以作为一个独立的画布,也可以利用canvas做一些动画而不用导入flash文件.同时, ...
- 再探canvas(小球实例)
之前学习过canvas的一些使用,也用过canvas绘制过时钟, 但是很久不用,有些遗忘了,这里做一个简单的回顾. 在web页面创建一个canvas画布非常简单,如下即可: <canvas id ...
- canvas小球动画
绘制小球 我们将会画一个小球用于动画学习,所以首先在画布上画一个球.下面的代码帮助我们建立画布. <canvas id="></canvas> 跟平常一样,我们需要先 ...
- canvas小球 时间倒计时demo-优化
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...
- canvas小球 时间demo
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...
- canvas动画气球
canvas小球的动画我用canvas画布实现的小球动画效果,可以参考下 我用canvas画布实现的小球动画效果,可以参考下 我用canvas画布实现的小球动画效果,可以参考下 我用canvas画布实 ...
- HTML5 Canvas彩色小球碰撞运动特效
脚本简介 HTML5 Canvas彩色小球碰撞运动特效是一款基于canvas加面向对象制作的运动小球动画特效. 效果展示 http://hovertree.com/texiao/html5/39/ ...
- canvas标签(1)--线条、矩形、圆形、文本、阴影、抛小球
从网上扒拉的代码,敲了敲代码玩. html页面显示内容很简单,只要写个canvas标签,给他一个id写js就可以了 <!DOCTYPE html> <html> <hea ...
随机推荐
- kubernetes 单节点和多节点环境搭建
kubernetes单节点环境搭建: 1.在VMWare Workstation中建立一个centos 7虚拟机.虚拟机的配置尽量调大一些 2.操作系统安装完成后,关闭centos 自带的防火墙服务 ...
- 利用Apache配置本地 自定义域名
第一步:配置 httpd.conf 开启 虚拟主机 配置模块 去掉 " Include conf/extra/httpd-vhosts.conf " 前面的" # &qu ...
- SystemVerilog语言简介(一)
1. 接口(Interface) Verilog模块之间的连接是通过模块端口进行的.为了给组成设计的各个模块定义端口,我们必须对期望的硬件设计有一个详细的认识.不幸的是,在设计的早期,我们很难把握设计 ...
- PHP openssl函数库
php openssl 函数库中.提供了大量的函数.但是我们一般用的最多的,就是 openssl_encrypt string openssl_encrypt ( string $data , str ...
- java定时任务(三):timerTask定时任务
这种方式是纯粹的java代码,需要继承timerTask接口并重写run方法,创建这个类的时候就会调用run方法. 基本的使用逻辑是: 把自己需要处理的业务逻辑放在自己写的这个继承了timerTask ...
- HighCharts中的Ajax请求的2D折线图
HighCharts中的Ajax请求的2D折线图 设计源码: <!DOCTYPE html> <html> <head> <meta charset=&quo ...
- Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field
1 错误描述 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.s ...
- freemarker获取封装类中对象的属性
freemarker获取封装类中对象的属性 1.设计思路 (1)封装学生类 (2)创建数据模型 (3)新建student.ftl (4)运行Junit测试文件,生成HTML文件 2.封装学生类 Stu ...
- Java中的表达式运算
1.问题背景 以下代码运行的结果为: A.a的值:8 b的值:7 B.a的值:8 b的值:8 C.a的值:9 b的值:7 D.a的值 ...
- 获取Filter的三种途径
一.通过CLSID [cpp] view plaincopyprint? IBaseFilter *pF = 0; HRESULT hr = CoCreateInstance(clsid, 0, CL ...