CSS 属性
全部展开 | 全部折叠
CSS 规则

CSS3 animation-delay 属性

主题:CSS3 属性参考上一页|下一页

说明

animation-delay CSS 属性定义动画何时开始(例如,2s 的值表示动画将在应用后 2 秒开始)。 此属性的值可以以秒 (s) 或毫秒 (ms) 为单位指定。

下表总结了此属性的使用上下文和版本历史记录。

默认值: 0s
适用于: 所有元素,::before::after 伪元素
继承: No
动画: No. 参见动画属性
版本: New in CSS3

语法

属性的语法如下:

animation-delay time | initial | inherit

下面的示例显示了 animation-delay 属性的作用。

.box {
    width: 50px;
    height: 50px;
    background: red;
    position: relative;
    /* Chrome, Safari, Opera */
    -webkit-animation-name: moveit;
    -webkit-animation-duration: 4s;
    -webkit-animation-delay: 2s;
    /* 标准语法 */
    animation-name: moveit;
    animation-duration: 4s;
    animation-delay: 2s;
}
 
/* Chrome, Safari, Opera */
@-webkit-keyframes moveit {
    from {left: 0;}
    to {left: 50%;}
}
 
/* 标准语法 */
@keyframes moveit {
    from {left: 0;}
    to {left: 50%;}
}

注意:此属性允许使用负值。 但是,它似乎已经开始在其动画周期的中途执行,例如 -2s 的动画延迟使动画立即开始,但在动画开始 2 秒后开始。


属性值

下表描述了该属性的值。

说明
time 定义动画开始前要等待的秒数 (s) 或毫秒 (ms)。 默认值为 0s。
initial 将此属性设置为其默认值。
inherit 如果指定,则关联元素采用其父元素 animation-delay 属性的 计算值

浏览器兼容性

所有主要的现代浏览器都支持 animation-delay 属性。

Browsers Icon

基本支持—

  • Firefox 5+ -moz-, 15+
  • Google Chrome 4+ -webkit-
  • Internet Explorer 10+
  • Apple Safari 4+ -webkit-
  • Opera 12+ -o-, 15+ -webkit-

进一步阅读

请参阅以下教程: CSS3 动画.

相关属性和规则: animation, animation-name, animation-duration, animation-timing-function, animation-iteration-count, animation-direction, animation-fill-mode, animation-play-state, @keyframes.

Advertisements