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


SVG RectElement.rx屬性用法及代碼示例


SVG RectElement.rx屬性用於返回與給定rect屬性對應的SVGAnimatedLength對象角度元件。

用法:

RectElement.rx

返回值:此屬性返回一個可以使用的SVGAnimatedLength對象獲取矩形元素的“rx”值和其他屬性。

範例1:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
      
    <h3>SVG RectElement.rx property</h3> 
      
    <svg width="300" height="300" 
        xmlns="http://www.w3.org/2000/svg"> 
  
        <rect width="100" height='190' 
            fill="green" id="gfg" 
            rx=20 ry=10 /> 
              
        <script> 
            var g = document.getElementById("gfg"); 
            console.log(g.rx) 
        </script> 
    </svg> 
</body> 
  
</html>

輸出:



範例2:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
  
    <h3>SVG RectElement.rx property</h3> 
      
    <svg width="300" height="300" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <rect width="100" height='190' 
            fill="green" id="gfg" rx=50% ry=10% /> 
              
        <script> 
            var g = document.getElementById("gfg"); 
            console.log(g.rx); 
        </script> 
    </svg> 
</body> 
  
</html>

輸出:




相關用法


注:本文由純淨天空篩選整理自taran910大神的英文原創作品 SVG RectElement.rx Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。