真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

HTML5中怎么用Canvas繪制圓點虛線

本篇內容主要講解“HTML5中怎么用Canvas繪制圓點虛線”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“HTML5中怎么用Canvas繪制圓點虛線”吧!

鄱陽網站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網頁設計、網站建設、微信開發(fā)、APP開發(fā)、成都響應式網站建設公司等網站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站2013年開創(chuàng)至今到現在10年的時間,我們擁有了豐富的建站經驗和運維經驗,來保證我們的工作的順利進行。專注于網站建設就選創(chuàng)新互聯(lián)建站

代碼如下:

var canvasPrototype = window.CanvasRenderingContext2D && CanvasRenderingContext2D.prototype;

canvasPrototype.dottedLine = function(x1, y1, x2, y2, interval) {

if (!interval) {

interval = 5;

}

var isHorizontal=true;

if (x1==x2){

isHorizontal=false;

}

var len = isHorizontal ? x2-x1 : y2-y1;

this.moveTo(x1, y1);

var progress=0;

while (len > progress) {

progress += interval;

if (progress > len) {

progress = len;

}

if (isHorizontal) {

this.moveTo(x1+progress,y1);

this.arc(x1+progress,y1,1,0,2*Math.PI,true);

this.fill();

} else {

this.moveTo(x1,y1+progress);

this.arc(x1,y1+progress,1,0,2*Math.PI,true);

this.fill();

}

}

}

到此,相信大家對“HTML5中怎么用Canvas繪制圓點虛線”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!


分享標題:HTML5中怎么用Canvas繪制圓點虛線
鏈接地址:http://weahome.cn/article/psoehd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部