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


SVG to属性用法及代码示例


SVGattribute表示属性的初始值。它与属性

用法:

to = "number"

属性值:

  • number:该属性值包含我们要设置该属性的编号。



我们将使用to属性来设置初始值。

范例1:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 1000 1000" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <rect x="10" y="10"> 
            <animate attributeName="width" 
                fill="freeze" from="100" 
                to="150" dur="3s" /> 
  
            <animate attributeName="height" 
                fill="freeze" from="100" 
                to="150" dur="3s" /> 
        </rect> 
    </svg> 
</body> 
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 1000 1000" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <rect x="10" y="10" fill="green"> 
            <animate attributeName="width" 
                fill="freeze" from="100" 
                to="150" dur="3s" /> 
  
            <animate attributeName="height" 
                fill="freeze" from="100" 
                to="150" dur="3s" /> 
        </rect> 
    </svg> 
</body> 
  
</html>

输出:




相关用法


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