コードを再配置して、キーフレーム アニメーションの定義を、それらを使用しているプロパティの下に配置しました。また、-webkit-animation: ;
宣言しかなかったので、mozilla、microsoft、opera、および W3C 準拠のブラウザーの宣言を追加しました。
ファイルに小さなテキストを保存するため、も宣言に結合しanimation-iteration-count: ;
ました。animation: ;
だから今、あなたが以前持っていたものの代わりに:
.container h5 {
background:rgba(0,0,0,0.5);
position:absolute;
bottom:4px;
width:100%;
padding:5px;
color:#fff;
text-align:center;
margin-bottom:0px;
-webkit-animation: headings 20s;
}
@-webkit-keyframes headings {
10% {
margin-bottom:4px;
}
15%,30% {
margin-bottom:-200px;
}
}
次のようになります。
.container h5 {
background:rgba(0,0,0,0.5);
position:absolute;
bottom:4px;
width:100%;
padding:5px;
color:#fff;
text-align:center;
margin-bottom:0px;
-webkit-animation: headings 20s;
-moz-animation: headings 20s;
-ms-animation: headings 20s;
-o-animation: headings 20s;
animation: headings 20s;
}
そして、対応するキーフレーム定義を追加しました。
最後のペンはここにあります。