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


CSS animation-name用法及代码示例


animation-name属性用于指定描述动画的@keyframes的名称。

用法:

animation-name:keyframename|none|initial|inherit;

属性值:animation-name属性值如下所示:


  • 关键帧名称:此属性用于指定需要与选择器绑定的关键帧的名称。
  • 没有:它是默认值。用于指定将没有动画。
  • 初始:此属性用于将此属性设置为其默认值。
  • 继承:此属性用于从其父元素继承此属性。

例:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            CSS | animation-name Property 
        </title> 
        <style>  
            body { 
                text-align:center; 
                width:70%; 
            } 
            h1 { 
                color:green; 
            } 
            div { 
                width:50px; 
                height:50px; 
                background:green; 
                position:relative; 
                -webkit-animation:geeks 5s infinite; 
                -webkit-animation-delay:2s; 
                animation:geeks 5s infinite; 
                animation-delay:2s; 
            } 
            @-webkit-keyframes geeks { 
                from { 
                    left:0%; 
                } 
                to { 
                    left:80%; 
                } 
            } 
            @keyframes geeks { 
                from { 
                    left:0px; 
                } 
                to { 
                    left:80%; 
                } 
            }  
            #one {  
                animation-direction:alternate-reverse;;  
            }  
            @keyframes text {  
                from {  
                    margin-left:60%;  
                }  
                to {  
                    margin-left:0%;  
                }  
            }  
        </style>  
    </head>  
    <body>  
        <h1>GeeksforGeeks</h1>  
        <h2>animation-name property</h2>  
        <div class = "gfg"></div>  
    </body>  
</html>                                                    

输出:

支持的浏览器:下面列出了animation-name属性支持的浏览器:

  • 谷歌浏览器43.0
  • Internet Explorer 10.0
  • Firefox 16.0
  • Opera 30.0
  • Safari 9.0


相关用法


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