您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)使用canvas三角函數(shù)怎么模擬一個(gè)水波效果,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
一、繪制sin函數(shù)圖像
sin函數(shù)表達(dá)式如下,
y=Asin(wx+φ)+h
其中 A表示振幅,ω表示角頻率(ω=2π/T,T為函數(shù)的周期),φ表示初相,h表示圖像向y軸正方向平移的長度 ;(這里需要注意一下:h在數(shù)學(xué)學(xué)的本來是表示向上平移的,但在canvas中采用的是屏幕坐標(biāo)系,即左上角為原點(diǎn),h則表示向下平移);
繪制代碼如下:
(1)添加canvas標(biāo)簽
<canvas id="canvas"></canvas>
(2)添加css樣式,設(shè)置canvas寬高
html, body { padding: 0; margin: 0; width: 100%; height: 100%; } canvas { width: 100%; height: 100%; }
(3)繪制函數(shù)圖像
var canvas = document.getElementById("canvas"), ctx = canvas.getContext('2d'), width = canvas.width = canvas.offsetWidth, height = canvas.height = canvas.offsetHeight; //聲明參數(shù) var A=50, W=1 / 50, Q=0, H= height / 2; //繪圖方法 (function draw(){ ctx.clearRect(0, 0, width, height);//清空畫布 ctx.beginPath(); //開始路徑 ctx.strokeStyle="#000"; //設(shè)置線條顏色 ctx.lineWidth = 1; //設(shè)置線條寬度 ctx.moveTo(0, height /2); //起始點(diǎn)位置 for (let x = 0; x <= width; x++) {// 繪制x對(duì)應(yīng)y的 var y = A*Math.sin(W*x+Q) +H ctx.lineTo(x, y) } ctx.stroke(); //繪制路徑 ctx.closePath(); //閉合路徑 })()
這樣我們可以得到以下圖像:
二、為函數(shù)圖像添加動(dòng)畫
上面得到的是是一個(gè)靜態(tài)的函數(shù)圖像,而我們一般見到的的波形圖或水波都是隨時(shí)間連續(xù)變化的,這里就要用到上一步中的參數(shù)相位φ,(js即代碼中的Q) ,我們將φ隨時(shí)間不斷增加或減小,即可得到不同時(shí)間的不同圖像;使用window.requestAnimationFrame實(shí)現(xiàn)幀動(dòng)畫;
修改以上代碼為:
var canvas = document.getElementById("canvas"), ctx = canvas.getContext('2d'), width = canvas.width = canvas.offsetWidth, height = canvas.height = canvas.offsetHeight; //聲明參數(shù) var A=50, W=1 / 50, Q=0, H= height / 2; //繪圖方法 (function draw(){ ctx.clearRect(0, 0, width, height);//清空畫布 ctx.beginPath(); //開始路徑 ctx.strokeStyle="#000"; //設(shè)置線條顏色 ctx.lineWidth = 1; //設(shè)置線條寬度 ctx.moveTo(0, height /2); //起始點(diǎn)位置 for (let x = 0; x <= width; x++) {// 繪制x對(duì)應(yīng)y的 var y = A*Math.sin(W*x+Q) +H ctx.lineTo(x, y) } ctx.stroke(); //繪制路徑 ctx.closePath(); //閉合路徑 })()
效果如下(渣渣截圖軟件):
三、繪制完整填充路徑
以上路徑雖有閉合,但卻不滿足我們需要填充的部分,直接填充效果如下:
完整填充路徑應(yīng)如圖所示:
閉合路徑后創(chuàng)建一個(gè)漸變顏色,作為填充顏色,代碼如下:
var lingrad = ctx.createLinearGradient(0,0,width,0); lingrad.addColorStop(0, 'rgba(0,186,128,0.8)'); lingrad.addColorStop(1, 'rgba(111,224,195,1)'); (function draw(){ window.requestAnimationFrame(draw); ctx.clearRect(0, 0, width, height); ctx.beginPath(); ctx.strokeStyle="#000"; ctx.fillStyle = lingrad; ctx.lineWidth = 1; ctx.moveTo(0, height /2); Q+=speed; for (let x = 0; x <= width; x++) { var y = A*Math.sin(W*x+Q) +H; ctx.lineTo(x, y); } ctx.lineTo(width, height); ctx.lineTo(0, height); ctx.fill(); ctx.closePath(); })()
效果如下:
四、完善水波動(dòng)畫
1、首先可以對(duì)上面波形疊加一個(gè)頻率更高的波形,使波形無規(guī)矩
var s = 0.1*Math.sin(x/150)+1; var y = A*Math.sin(W*x+Q) +H; y=y*s;
2、再添加一個(gè)相位變化不同的波形,其漸變填充與上一個(gè)漸變方向相反使其形成相互重疊的陰影效果;并設(shè)置路徑重疊效果globalCompositeOperation;
var canvas = document.getElementById("canvas"), ctx = canvas.getContext('2d'), width = canvas.width = canvas.offsetWidth, height = canvas.height = canvas.offsetHeight; var A=30, W=1 /200, Q=0, H= height / 2; var A2=30, W2=1/300, Q2=0, H2= height / 2; var speed=-0.01; var speed2=-0.02; var lingrad = ctx.createLinearGradient(0,0,width,0); lingrad.addColorStop(0, 'rgba(0,186,128,0.8)'); lingrad.addColorStop(1, 'rgba(111,224,195,1)'); var lingrad2 = ctx.createLinearGradient(0,0,width,0); lingrad2.addColorStop(0,'rgba(111,224,195,1)'); lingrad2.addColorStop(1, 'rgba(0,186,128,0.8)'); (function draw(){ window.requestAnimationFrame(draw); ctx.clearRect(0, 0, width, height); ctx.beginPath(); ctx.fillStyle = lingrad; ctx.moveTo(0, height /2); //繪制第一個(gè)波形 Q+=speed; for (let x = 0; x <= width; x++) { var s = 0.1*Math.sin(x/150)+1; var y = A*Math.sin(W*x+Q) +H; y=y*s; ctx.lineTo(x, y); } ctx.lineTo(width, height); ctx.lineTo(0, height); ctx.fill(); ctx.closePath() //設(shè)置重疊效果 ctx.globalCompositeOperation = "destination-over" //繪制第二個(gè)波形 ctx.beginPath(); ctx.fillStyle = lingrad2; Q2+=speed2; for (let x = 0; x < width; x++) { var y = A2*Math.sin(x*W2+Q2) +H2; ctx.lineTo(x, y); } ctx.lineTo(width,height); ctx.lineTo(0,height); ctx.fill() ctx.closePath(); })()
以上就是使用canvas三角函數(shù)怎么模擬一個(gè)水波效果,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。