canvas 动态地球
时间: 2023-10-16 18:10:27 浏览: 136
动态3D地球图
你可以使用 HTML5 的 canvas 元素来创建一个动态的地球。下面是一个简单的示例代码:
```html
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="400" height="400"></canvas>
<script>
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
var earthRadius = 100;
var earthX = canvas.width / 2;
var earthY = canvas.height / 2;
function drawEarth() {
ctx.beginPath();
ctx.arc(earthX, earthY, earthRadius, 0, 2 * Math.PI);
ctx.fillStyle = "blue";
ctx.fill();
ctx.closePath();
}
function draw() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
drawEarth();
// 在这里添加其他动画效果,如旋转等
requestAnimationFrame(draw);
}
draw();
</script>
</body>
</html>
```
以上代码创建了一个大小为 400x400 像素的画布,并在其中绘制了一个蓝色的圆表示地球。你可以在 `draw()` 函数中添加其他动画效果,如旋转地球等,来实现更加生动的动态效果。
阅读全文