我有一個簡單的CSS動畫文本褪色: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>
出於某種原因,該動畫不能播放。有誰知道爲什麼? (我保留所有代碼加上其他事情正在導致此問題)
W hy沒有jquery?因爲css動畫不支持所有瀏覽器? – Dolo 2013-04-06 07:45:36
不,它支持在我正在使用的Safari中。瀏覽器老舊的用戶習慣於網頁看起來有點過時和過時。 – william44isme 2013-04-06 07:49:23