<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>旋转</title>
<style>
* {margin:0padding:0border:0}
div {width:200pxheight:200pxmargin-left:100pxmargin-top:-100px}
img {width:200pxheight:200pxborder-radius:100pxanimation:myfirst 5s linear infinite-webkit-animation:myfirst 5s linear infiniteanimation-play-state:running-webkit-animation-play-state:running}
img:hover {animation-play-state:paused-webkit-animation-play-state:paused}
@keyframes myfirst {0% {transform:rotate(0deg)} 100% {transform:rotate(360deg)}}
@-webkit-keyframes myfirst {0% {transform:rotate(0deg)} 100% {transform:rotate(360deg)}}
</style>
</head>
<body>
<p style="margin-top:100px"></p>
<div><img src="163146_vN8g_574908.jpg"/><div>
</body>
</html>
需要的图片
今天研究的是利用HTML5的Canvas画图来模拟太阳系运转,首先,在这个太阳系里分为画轨道和画星球两个部分,对于每一个星球我们要知道它的颜色和公转周期,如下图。
采用面向对象编程的思想,代码如下
stars.html
[html] view plain copy
<!DOCTYPE HTML>
<html>
<head></head>
<body>
<canvas id="canvas" width="1000" height="1000" style="background:#000">
你的浏览器不支持canvas标签!
</canvas>
<script src="stars.js">
</script>
</body>
</html>
stars.js
[javascript] view plain copy
/******************************************/
/**/
/* 本节代码体现了用JavaScript编写面向对 */
/* 象程序的思想,希望能认真阅读理解。 */
/**/
/******************************************/
//设置2d绘图环境
var ctx = document.getElementById("canvas").getContext("2d")
//画轨道
function drawTrack(){
for(var i = 0i <8i++){
ctx.beginPath()
ctx.arc(500, 500, (i + 1) * 50, 0, 360, false)
ctx.closePath()
ctx.strokeStyle = "#fff"
ctx.stroke()
}
}
//画星球的类
function Star(x, y, radius, cycle, sColor, eColor){
//设置星球类的属性
this.x = x//星球的坐标点
this.y = y
this.radius = radius //星球的半径
this.cycle = cycle//设置周期
this.sColor = sColor //星球的颜色,起始颜色和结束颜色
this.eColor = eColor
this.color = null
//设置一个计时器
this.time = 0
//给星球类定义一个方法
this.draw = function(){
ctx.save() //保存之前的内容
ctx.translate(500, 500) //重置0,0坐标
ctx.rotate(this.time * (360 / this.cycle) * Math.PI / 180) //旋转角度
//画星球
ctx.beginPath()
ctx.arc(this.x, this.y, this.radius, 0, 360, false)
ctx.closePath()
//设置星球的填充颜色
this.color = ctx.createRadialGradient(this.x, this.y, 0, this.x, this.y, this.radius)
this.color.addColorStop(0, this.sColor)
this.color.addColorStop(1, this.eColor)
ctx.fillStyle = this.color
ctx.fill()
//恢复之前画布的内容
ctx.restore()
this.time += 1
}
}
function Sun(){
Star.call(this, 0, 0, 20, 0, "#FFFF00", "#FF9900")
}
//创建一个水星的构造函数
function Mercury(){
Star.call(this, 0, -50, 10, 87.70, "#A69697", "#5C3E40")
}
//创建一个金星的构造函数
function Venus(){
Star.call(this, 0, -100, 10, 224.701, "#C4BBAC", "#1F1315")
}
//创建一个地球的构造函数
function Earth(){
Star.call(this, 0, -150, 10, 365.2422, "#78B1E8", "#050C12")
}
//创建一个火星的构造函数
function Mars(){
Star.call(this, 0, -200, 10, 686.98, "#CEC9B6", "#76422D")
}
//创建一个木星的构造函数
function Jupiter(){
Star.call(this, 0, -250, 10, 4332.589, "#C0A48E", "#322222")
}
//创建一个土星的构造函数
function Saturn(){
Star.call(this, 0, -300, 10, 10759.5, "#F7F9E3", "#5C4533")
}
//创建一个天王星的构造函数
function Uranus(){
Star.call(this, 0, -350, 10, 30799.095, "#A7E1E5", "#19243A")
}
//创建一个海王星的构造函数
function Neptune(){
Star.call(this, 0, -400, 10, 60152, "#0661B2", "#1E3B73")
}
var sun = new Sun()
var mercury = new Mercury()
var venus = new Venus()
var earth = new Earth()
var mars = new Mars()
var jupiter = new Jupiter()
var saturn = new Saturn()
var uranus = new Uranus()
var neptune = new Neptune()
function Move(){
ctx.clearRect(0, 0, 1000, 1000)
drawTrack()
sun.draw()
mercury.draw()
venus.draw()
earth.draw()
mars.draw()
jupiter.draw()
saturn.draw()
uranus.draw()
neptune.draw()
}
setInterval(Move,10)
首先这个效果,是纯JS打造,没用Flash。这让我大呼JS强大。仔细研究下,发现不是很难。首先运用了HTML5+CSS3。其次,下载所有图片,你会恍然大悟,其中包含裂缝的各个状态,右上角火山,裂缝阴影,船票等都在其中,这里已经很明显了,使用JS,轮询控制每张图片出现的时间,位置和长度,这样就可以达到动画效果(我知道这是废话),至于代码怎么也,你完全可以去看他调用的JS,记住,脚本语言没有编译过,只要你想找,都可以找到。
第三,关于屏幕抖动,你百度这个效果吧!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)