當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML canvas fillRect()用法及代碼示例


fillRect()方法用於使用給定的顏色填充矩形。 fillRect()方法的默認顏色是黑色。

用法:

context.fillRect( x, y, width, height )

參數:該方法接受上述和以下所述的四個參數:


  • x:它存儲矩形左上角的x坐標。
  • y:它存儲矩形左上角的y坐標。
  • width:它以像素為單位存儲寬度。
  • height:它以像素為單位存儲高度。

範例1:本示例使用fillRect()方法創建矩形並用默認顏色(黑色)填充。

<!DOCTYPE html> 
<html> 
<head> 
    <title> 
        HTML canvas fillRect() Method 
    </title> 
</head> 
<body> 
    <canvas id="GFG" width="500" height="300"></canvas> 
      
    <script> 
        var x = document.getElementById("GFG"); 
        var contex = x.getContext("2d"); 
        contex.fillRect(50, 50, 350, 200); 
        contex.stroke(); 
    </script>  
  
</body> 
</html>

輸出:

範例2:本示例使用fillRect()方法創建矩形並用ve顏色(綠色)填充。

<!DOCTYPE html> 
<html> 
<head> 
    <title> 
        HTML canvas fillRect() Method 
    </title> 
</head> 
<body> 
    <canvas id="GFG" width="500" height="300"></canvas> 
      
    <script> 
        var x = document.getElementById("GFG"); 
        var contex = x.getContext("2d"); 
        contex.fillStyle = "green"; 
        contex.fillRect(50, 50, 350, 200); 
        contex.stroke(); 
    </script>  
  
</body> 
</html>

輸出:

支持的瀏覽器:下麵列出了fillRect()方法支持的瀏覽器:

  • 穀歌瀏覽器
  • Internet Explorer 9.0
  • 火狐瀏覽器
  • 蘋果瀏覽器
  • Opera


相關用法


注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 HTML | canvas fillRect() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。