点击圆环的哪里,哪里外面就会出现一条弧线。
<canvas id="canvas"></canvas>
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext("2d");
const width = 500; // 画布宽度
const height = 500; // 画布高度
canvas.width = width;
canvas.height = height;
const centerX = width / 2; // 圆心 x 坐标
const centerY = height / 2; // 圆心 y 坐标
const radius = 100; // 圆环半径
const lineWidth = 10; // 圆环线条宽度
// 绘制圆环
function drawCircle() {
ctx.beginPath();
ctx.arc(centerX, centerY, radius, 0, Math.PI * 2);
ctx.lineWidth = lineWidth;
ctx.strokeStyle = "#000000";
ctx.stroke();
ctx.closePath();
}
// 绘制弧线
function drawArc(angle) {
ctx.clearRect(0, 0, width, height);
// 绘制圆环
drawCircle();
// 计算弧线起始点坐标
const startX = centerX + Math.cos(angle) * (radius + lineWidth);
const startY = centerY + Math.sin(angle) * (radius + lineWidth);
// 绘制弧线
ctx.beginPath();
ctx.moveTo(startX, startY);
ctx.arc(centerX, centerY, radius + lineWidth, angle, angle + Math.PI / 2);
ctx.lineWidth = 3;
ctx.strokeStyle = "#ff0000";
ctx.stroke();
ctx.closePath();
}
// 点击事件监听器
canvas.addEventListener("click", function(event) {
const rect = canvas.getBoundingClientRect();
const mouseX = event.clientX - rect.left;
const mouseY = event.clientY - rect.top;
// 计算点击位置相对于圆心的角度
const angle = Math.atan2(mouseY - centerY, mouseX - centerX);
// 绘制弧线
drawArc(angle);
});
以上来着AI答案,亲测了效果请看图片,再加点动画效果和点击那个区域展示大小限制应该就差不多就能实现了,可以参考一下哈。个人感觉css也能实现回头研究一下可以。
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答5.2k 阅读✓ 已解决
1 回答3.4k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
说下
echarts
实现这个效果的思路pie
做一个圆环,和内层使用相同的数据