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


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


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

用法:

EllipseElement.cx

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

范例1:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg width="200" height="200" 
        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.cx) 
        </script> 
    </svg> 
</body> 
  
</html>

输出:



范例2:

HTML

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

输出:




相关用法


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