1

我有一个简单的 CSS 动画来淡入文本:

#title{
    animation: text 2s;
    -webkit-animation: text 2s;
    -moz-animation: text 2s;
    -o-animation: text 2s;
    font-family: 'Lato300', sans-serif;
    height: 115px;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@keyframes text{
    0% {display: none;}
    100% {display: inline;}
}

@-moz-keyframes text{
    0% {display: none;}
    100% {display: inline;}
}

@-webkit-keyframes text{
    0% {display: none;}
    100% {display: inline;}
}

@-o-keyframes text{
        0% {display: none;}
    100% {display: inline;}
}

的HTML:

<div id="title"><h1>Text goes here</h1></div>

由于某种原因,动画无法播放。有谁知道为什么?(我保留了所有代码以防其他原因导致问题)

4

3 回答 3

1

您将无法为display属性设置动画。但是,您可以转换opacity

@-webkit-keyframes text {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

http://jsfiddle.net/5FCZA/

于 2013-04-06T07:47:17.227 回答
0
shake
 @-webkit-keyframes text {
    0%, 100% {-webkit-transform: translateX(0);}
    10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
    20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
} 

or rotate
@-webkit-keyframes text {
    0% {-webkit-transform: scale(1);}   
    10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);}
    30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);}
    40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);}
    100% {-webkit-transform: scale(1) rotate(0);}
}
于 2013-04-06T08:00:51.573 回答
0

对于将来遇到类似问题的任何人,我通过添加解决了这个问题

display:block

到我试图动画的跨度

于 2016-06-09T16:02:48.470 回答