溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

HTML5 canvas怎么讓圖形組合

發(fā)布時(shí)間:2021-08-12 10:28:33 來(lái)源:億速云 閱讀:109 作者:chen 欄目:web開(kāi)發(fā)

本篇內(nèi)容主要講解“HTML5 canvas怎么讓圖形組合”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“HTML5 canvas怎么讓圖形組合”吧!

<canvas></canvas>只是一個(gè)繪制圖形的容器,除了id、class、style等屬性外,還有height和width屬性。在<canvas>>元素上繪圖主要有三步:

1.獲取<canvas>元素對(duì)應(yīng)的DOM對(duì)象,這是一個(gè)Canvas對(duì)象;
2.調(diào)用Canvas對(duì)象的getContext()方法,得到一個(gè)CanvasRenderingContext2D對(duì)象;
3.調(diào)用CanvasRenderingContext2D對(duì)象進(jìn)行繪圖。

圖形組合:

&bull;globalAlpha: 設(shè)置或返回繪圖的當(dāng)前 alpha 或透明值

該方法主要是設(shè)置圖形的透明度,這里就不具體介紹。

&bull;globalCompositeOperation: 設(shè)置或返回新圖像如何繪制到已有的圖像上,該方法有以下屬性值:

HTML5 canvas怎么讓圖形組合

下面是一個(gè)小示例,可以通過(guò)點(diǎn)擊改變組合效果:

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <!DOCTYPE html>  

  2. <html lang="en">  

  3. <head>  

  4.     <meta charset="UTF-8">  

  5.     <title>圖形組合</title>  

  6.     <style type="text/css">  

  7.         #canvas{   

  8.             border: 1px solid #1C0EFA;   

  9.             display: block;   

  10.             margin: 20px auto;   

  11.         }   

  12.         #buttons{   

  13.             width: 1000px;   

  14.             margin: 5px auto;   

  15.             clear:both;   

  16.         }   

  17.         #buttons a{   

  18.             font-size: 18px;   

  19.             display: block;   

  20.             float: left;   

  21.             margin-left: 20px;   

  22.         }   

  23.     </style>  

  24. </head>  

  25. <body>  

  26.     <canvas id="canvas" width="1000" height="800">  

  27.             你的瀏覽器還不支持canvas   

  28.     </canvas>  

  29.     <div id="buttons">  

  30.         <a href="#">source-over</a>  

  31.         <a href="#">source-atop</a>  

  32.         <a href="#">source-in</a>  

  33.         <a href="#">source-out</a>  

  34.         <a href="#">destination-over</a>  

  35.         <a href="#">destination-atop</a>  

  36.         <a href="#">destination-in</a>  

  37.         <a href="#">destination-out</a>  

  38.         <a href="#">lighter</a>  

  39.         <a href="#">copy</a>  

  40.         <a href="#">xor</a>  

  41.     </div>  

  42. </body>  

  43. <script type="text/javascript">  

  44.   

  45. window.onload = function(){   

  46.     draw("source-over");   

  47.   

  48.     var buttons = document.getElementById("buttons").getElementsByTagName("a");   

  49.     for (var i = 0; i < buttons.length; i++) {   

  50.         buttons[i].onclick = function(){   

  51.             draw(this.text);   

  52.             return false;   

  53.         };   

  54.     }   

  55. };   

  56.   

  57.     function draw(compositeStyle){   

  58.         var canvas = document.getElementById("canvas");   

  59.         var context = canvas.getContext("2d");   

  60.   

  61.         context.clearRect(0, 0, canvas.width, canvas.height);   

  62.   

  63.         //draw title   

  64.         context.font = "bold 40px Arial";   

  65.         context.textAlign = "center";   

  66.         context.textBasedline = "middle";   

  67.         context.fillStyle = "#150E0E";   

  68.         context.fillText("globalCompositeOperation = "+compositeStyle, canvas.width/2, 60);   

  69.   

  70.         //draw a rect   

  71.         context.fillStyle = "#F6082A";   

  72.         context.fillRect(300, 150, 500, 500);   

  73.   

  74.         //draw a triangle   

  75.         context.globalCompositeOperation = compositeStyle;   

  76.         context.fillStyle = "#1611F5";   

  77.         context.beginPath();   

  78.         context.moveTo(700, 250);   

  79.         context.lineTo(1000,750);   

  80.         context.lineTo(400, 750);   

  81.         context.closePath();   

  82.         context.fill();   

  83.     }   

  84.   

  85. </script>  

  86. </html>  

讀者可以點(diǎn)擊標(biāo)簽來(lái)觀察不同的組合效果,效果如下:

HTML5 canvas怎么讓圖形組合

到此,相信大家對(duì)“HTML5 canvas怎么讓圖形組合”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI