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


SVG LinearGradientElement.x2属性用法及代码示例


SVG LinearGradientElement.x2属性返回与给定LinearGradient元素的属性相对应的SVGAnimatedLength对象。

用法:

LinearGradientElement.x2

返回值:此属性返回SVGAnimatedLength对象,该对象可用于获取x2 LinearGradient元素。

范例1:

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 200 200" 
         xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink"> 
  <defs> 
    <linearGradient id="gfg" gradientTransform="rotate(70)"
                    x1="0%" x2="20%" y1="0%" y2="20%"> 
      <stop offset="10%"  stop-color="blue" /> 
      <stop offset="90%" stop-color="green" /> 
    </linearGradient> 
  </defs> 
  
  <circle cx="20" cy="20" r="20" fill="url('#gfg')" /> 
      <script> 
          var a=document.getElementById("gfg"); 
          console.log(a.x2); 
      </script> 
</svg> 
</body> 
  
</html>

输出:



范例2:

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 500 500" 
         xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink"> 
  <defs> 
    <linearGradient id="gfg" 
                    gradientTransform="rotate(70)"
                    x1="0%" x2="20%" y1="0%" y2="20%"> 
      <stop offset="10%"  stop-color="blue" /> 
      <stop offset="90%" stop-color="green" /> 
    </linearGradient> 
  </defs> 
  
  <ellipse cx="100" cy="70" rx="80" 
           ry="50" fill="url('#gfg')" /> 
      <script> 
          var a=document.getElementById("gfg"); 
          console.log(a.x2); 
      </script> 
</svg> 
</body> 
  
</html>

输出:

范例3:

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 500 500" 
         xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink"> 
  <defs> 
    <linearGradient id="gfg" 
                    gradientTransform="rotate(70)" 
                    x1="0%" x2="20%" 
                    y1="0%" y2="20%"> 
      <stop offset="10%"  stop-color="blue" /> 
      <stop offset="90%" stop-color="green" /> 
    </linearGradient> 
  </defs> 
  
  <rect height="80" width="80" x="30"
        y="30" fill="url('#gfg')" /> 
      <script> 
          var a=document.getElementById("gfg"); 
          console.log(a.x2); 
      </script> 
</svg> 
</body> 
  
</html>

输出:




相关用法


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