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


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


SVG CircleElement.cx属性返回与给定lin属性相对应的SVGAnimatedLength对象e元件。

用法:

CircleElement.cx

返回值:此属性返回可以使用的SVGAnimatedLength对象获取circle元素的cx。

范例1:

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg xmlns="http://www.w3.org/2000/svg"
        viewBox="0 0 250 250" width="250" 
        height="250"> 
          
        <circle cx="100" cy="100" r="50" 
            fill="green" id="gfg" 
            onclick="clickCircle();" /> 
          
        <script> 
            var g = document.getElementById("gfg"); 
            console.log(g.cx) 
        </script> 
    </svg> 
</body> 
  
</html>

输出:



范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg xmlns="http://www.w3.org/2000/svg"
        viewBox="0 0 250 250" width="250" 
        height="250"> 
          
        <circle cx="100" cy="100" r="50" 
            fill="green" class="gfg" 
            onclick="clickCircle();" /> 
          
        <script> 
            function clickCircle() { 
                var g = document.querySelector(".gfg"); 
                document.write("cx value of the circle is:", 
                    g.cx.animVal.value); 
            } 
        </script> 
    </svg> 
</body> 
  
</html>

输出:




相关用法


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