1 Star 0 Fork 1

T17_18/utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
chatGPT.html 797 Bytes
一键复制 编辑 原始数据 按行查看 历史
T17_18 提交于 2022-12-27 14:23 . 更新
<html>
<head>
<style>
canvas {
background-color: #eee;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script>
var canvas = document.querySelector('#canvas');
var ctx = canvas.getContext('2d');
canvas.width = 400;
canvas.height = 400;
var x = 0;
var y = canvas.height / 2;
var speed = 2;
var radius = 10;
setInterval(function() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
ctx.fillStyle = '#000000';
ctx.arc(x, y, radius, 0, 2 * Math.PI);
ctx.fill();
x += speed;
if (x > canvas.width + radius) x = 0 - radius;
}, 30);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/t1718/utils.git
git@gitee.com:t1718/utils.git
t1718
utils
utils
master

搜索帮助