最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

利用三角函數(shù)在canvas上畫虛線

來源:懂視網(wǎng) 責(zé)編:小OO 時間:2020-11-27 20:05:59
文檔

利用三角函數(shù)在canvas上畫虛線

因為canvas的api沒有虛線的。所以需要自己實現(xiàn);順便復(fù)習(xí)一下三角函數(shù)豈不美滋滋。,var context=document.getElementById(";canvas";).getContext(";2d";);function drawDashedLine(context,x1,y1,x2,y2,y1+everydashLength_y*i) } context.stroke()}context.lineWidth=3context.strokeStyle=";blue";drawDashedLine(context,20,20,context.canvas.width-20,20,20)。效果如圖;
推薦度:
導(dǎo)讀因為canvas的api沒有虛線的。所以需要自己實現(xiàn);順便復(fù)習(xí)一下三角函數(shù)豈不美滋滋。,var context=document.getElementById(";canvas";).getContext(";2d";);function drawDashedLine(context,x1,y1,x2,y2,y1+everydashLength_y*i) } context.stroke()}context.lineWidth=3context.strokeStyle=";blue";drawDashedLine(context,20,20,context.canvas.width-20,20,20)。效果如圖;
本文主要介紹了利用三角函數(shù)在canvas上畫虛線的方法的相關(guān)資料,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧,希望能幫助到大家。

因為canvas的api沒有虛線的

所以需要自己實現(xiàn)

順便復(fù)習(xí)一下三角函數(shù)豈不美滋滋

var context=document.getElementById("canvas").getContext("2d");
function drawDashedLine(context,x1,y1,x2,y2,dashlength){
 dashlength=dashlength===undefined?5:dashlength;
 var deltaX=x2-x1; //一條直角邊的長
 var deltay=y2-y1; //另一條指教邊的長

 var numDashes=Math.floor(
 Math.sqrt(deltaX*deltaX+deltay*deltay)/dashlength //Math.sqrt返回一個數(shù)的平方根 dashlength虛線每個點的長度
 )

 var everydashLength_x=deltaX/numDashes //確定X軸每條虛線點的起始點
 var everydashLength_y=deltay/numDashes //確定Y軸每條虛線點的起始點

 for(var i=0;i<numDashes;i++){
 context[i%2===0?'moveTo':"lineTo"]
 (x1+everydashLength_x*i,y1+everydashLength_y*i)
 }
 context.stroke()

}
context.lineWidth=3
context.strokeStyle="blue"
drawDashedLine(context,20,20,context.canvas.width-20,20,20)

效果如圖

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

利用三角函數(shù)在canvas上畫虛線

因為canvas的api沒有虛線的。所以需要自己實現(xiàn);順便復(fù)習(xí)一下三角函數(shù)豈不美滋滋。,var context=document.getElementById(";canvas";).getContext(";2d";);function drawDashedLine(context,x1,y1,x2,y2,y1+everydashLength_y*i) } context.stroke()}context.lineWidth=3context.strokeStyle=";blue";drawDashedLine(context,20,20,context.canvas.width-20,20,20)。效果如圖;
推薦度:
標(biāo)簽: 虛線 三角函數(shù) canvas
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top