我有一个简单的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>
由于某种原因,动画无法播放。有谁知道为什么? (我保留了所有代码,因为其他因素导致问题)
答案 0 :(得分:1)
您将无法为display
属性设置动画。但是,您可以转换opacity
@-webkit-keyframes text {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
答案 1 :(得分: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);}
}
答案 2 :(得分:0)
对于将来遇到类似问题的任何人,我通过添加
解决了这个问题display:block
到 span 我试图制作动画