我希望圖片具有動畫,並且我希望文本具有動畫。在一個懸停類中有多個CSS3動畫
這就是我到目前爲止。
類:
.post-image:hover{
animation: picanim 1s;
-webkit-animation: picanim 1s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
動畫:
@-webkit-keyframes picanim {
0%{opacity: 1; -webkit-border-radius: 5px; -mo-border-radius: 5px; border-radius: 5px;}
100%{opacity: 0.5; -webkit-border-radius: 20px; -mo-border-radius: 20px; border-radius: 20px;}
}
現在我想另一個動畫是.POST圖像內:懸停類,但是當我做到這一點,沒有動畫工作。
.post-image:hover{
/*foto animatie */
animation: picanim 1s;
-webkit-animation: picanim 1s; /* Safari and Chrome */
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
/*text animation*/
animation: textAnim 1s;
-webkit-animation: textAnim 1s; /* Safari and Chrome */
}
任何人都有解決方案嗎?
任何JSFiddle?所以我們可以有趣地寫出答案? – Kirk