一个绘制虚线的算法。很不错!来自《html5 canvas核心技术》一书。
var canvas = document.getElementByIdx_x_x_x("canvas"),
function drawDashLine(ctx, x1, y1, x2, y2, dashLength){
}
ctx.lineWidth = 2;
ctx.strokeStyle = "#0000ff";
drawDashLine(ctx, 0, 0, 400, 400, 8)
http://www.rgraph.net/blog/2013/january/html5-canvas-dashed-lines.html
-
« 上一篇:
SVG-Morpheus实现SVG图标图形间的补形动画