當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。