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


SVG keyTimes属性用法及代码示例


keyTimes属性用于指定介于0和1(含)之间的浮点数(时间值)列表,该列表用于控制动画的步调。使用此属性的元素包括<animate>,<animateColor>,<animateMotion>和<animateTransform>。

用法:

keyTimes = [;<number>]*

属性值:keyTimes属性接受上面提到和下面描述的值。

  • [; <number>] *:它是一个由semi-colon分隔的介于0和1之间的数字的列表。

注意:keyTimes属性的默认值为none

以下示例说明了keytimes属性的用法。



范例1:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <h1 style="color:green; margin-left:35px;"> 
        GeeksforGeeks 
    </h1> 
  
    <svg viewBox="-10 80 620 120" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <polygon fill="green" points="55.724,  
            91.297 41.645, 91.297 36.738,  
            105.038 47.483, 105.038 41.622, 
            124.568 62.783, 98.526 51.388,  
            98.526" /> 
  
        <animate attributeType="CSS" 
            attributeName="visibility" 
            values="hidden;visible;hidden" 
            keyTimes="0; 0.75; 1" dur="1s" 
            repeatCount="indefinite" /> 
    </svg> 
</body> 
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <h1 style="color:green; margin-left:35px;"> 
        GeeksforGeeks 
    </h1> 
  
    <svg viewBox="0 0 620 120" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <circle cx="60" cy="10" r="10" fill="green"> 
            <animate attributeName="cx" dur="2s" 
                repeatCount="indefinite" 
                values="60 ; 110 ; 60 ; 10 ; 60"
                keyTimes="0 ; 0.3 ; 0.6 ; 0.80 ; 1" /> 
        </circle> 
    </svg> 
</body> 
  
</html>

输出:




相关用法


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