利用三角函數(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)。效果如圖;