当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


SVG EllipseElement.rx属性用法及代码示例


SVG EllipseElement.rx属性返回与给定椭圆元素的属性相对应的SVGAnimatedLength对象

用法:

EllipseElement.rx

返回值:此属性返回SVGAnimatedLength对象,该对象可用于获取Ellipse元素的rx

范例1:

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"> 
  <ellipse cx="100" cy="100" rx="60" ry="60" id="ellipse"
      onclick="outputSize();"/> 
          <script> 
              var g = document.getElementById("ellipse"); 
              console.log(g.rx) 
          </script> 
    </svg> 
</body> 
  
</html>

输出:



范例2:

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"> 
  <ellipse cx="100" cy="100" rx="100" ry="60" id="ellipse"
      onclick="outputSize();"/> 
          <script> 
              var g = document.getElementById("ellipse"); 
              console.log(g.rx) 
          </script> 
    </svg> 
</body> 
  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自taran910大神的英文原创作品 SVG EllipseElement.rx property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。