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


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


SVG EllipseElement.cy属性返回与给定ellipse元素的属性对应的SVGAnimatedLength对象

用法:

EllipseElement.cy

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

范例1:

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

输出:



范例2:

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

输出:




相关用法


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