HLJ 发布于
2018-08-20 12:52:28

HTML5 Canvas globalAlpha属性设置图形透明度

要使用HTML5 Canvas设置元素的不透明度,我们可以将画布上下文的globalAlpha属性设置为0到1之间的实数,其中0表示完全透明,1表示完全不透明。
html代码:
<!DOCTYPE HTML>
<html>
  <head>
    <style>
      body {
        margin: 0px;
        padding: 0px;
      }
    </style>
  </head>
  <body>
    <canvas id="myCanvas" width="578" height="200"></canvas>
    <script>
      var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');

      // draw blue rectangle
      context.beginPath();
      context.rect(200, 20, 100, 100);
      context.fillStyle = 'blue';
      context.fill();

      // draw transparent red circle
      context.globalAlpha = 0.5;
      context.beginPath();
      context.arc(320, 120, 60, 0, 2 * Math.PI, false);
      context.fillStyle = 'red';
      context.fill();
    </script>
  </body>
</html>

当前文章内容为原创转载请注明出处:http://www.good1230.com/detail/2018-08-20/169.html
最后生成于 2023-06-18 18:38:09
此内容有帮助 ?
0