如何在<canvas>
没有问题的情况下做一个圆圈
const canvas = document.querySelector('canvas');
const ctx = canvas.getContext('2d');
ctx.beginPath();
ctx.arc(100, 100, 90, 0, 2 * Math.PI);
ctx.strokeStyle = "#1CB3FE"
ctx.lineWidth = 10;
ctx.stroke();
<canvas width="400" height="400" </canvas>
问题 - 创建一个不断增长的进度条线的动画,即在canvas
CSS 和 SVG 属性中找到类似物, stroke-dasharray
以及stroke-dashoffset
问题:
如何重复canvas
显示完成百分比的进度条动画:
svg {
height: 90vh;
margin: auto;
display: block;
}
path {
stroke-linecap: round;
stroke-width: 6;
}
path.grey {
stroke: #e7e7e8;
}
path.purple {
stroke: url(#gradient);
stroke-dasharray: 198;
stroke-dashoffset: 198;
animation: dash 3s ease-out forwards;
}
path.white {
stroke: #ffffff;
stroke-dasharray: 0px, 198px;
stroke-dashoffset: 198;
stroke-width: 3.5px;
animation: dash 3s ease-out forwards;
}
@keyframes dash {
to {
stroke-dashoffset: 1;
}
}
<svg viewbox="0 0 100 100">
<linearGradient id="gradient" x1="0" y1="0" x2="0" y2="100%">
<stop offset="0%" stop-color="#56c4fb" />
<stop offset="100%" stop-color="#0baeff" />
</linearGradient>
<path class="grey" d="M30,90 A40,40 0 1,1 80,90" fill='none' />
<path id="purple" fill='none' class="purple" d="M30,90 A40,40 0 1,1 80,90" />
<path id="white" fill='none' class="white" d="M30,90 A40,40 0 1,1 80,90" />
</svg>
或者,您也可以在 stroke-dasharray 中将其更改为所需的百分比
使用
canvas
动画时,您必须自己做。例如,使用
requestAnimationFrame
, 来调用每个渲染步骤。要画一个圆,您可以使用
.arc
. 此方法允许您指定圆的中心以及要绘制的弧度段为了方便计算,您可以将坐标系移动到圆心,使用
.translate
现在设置开始角度、结束角度和改变步长就足够了,每次改变当前角度时调用一次重绘。
例如:
像这样的地方:
更改进度值并重绘。