Drawing Dashed lines on HTML5 Canvas?

后端 未结 5 838
盖世英雄少女心
盖世英雄少女心 2020-12-29 20:31

I would like to draw some dashed lines on HTML5 canvas. But I couldn\'t find there is such a feature. the canvas path could only draw solid lines. And people have tried to u

5条回答
  •  独厮守ぢ
    2020-12-29 20:57

    You can use the setLineDash() method.

    context.setLineDash([2,3]);
    

    http://www.rgraph.net/blog/2013/january/html5-canvas-dashed-lines.html

提交回复
热议问题