我發現這個問題CSS Auto hide elements after 5 seconds
,我需要知道如何做的這個oposite。 基本上是:
與元素-page負載隱藏
-Wait5秒
-Show元素
我不是很好的CSS所以任何幫助將是不錯!
#thingtohide {
-moz-animation: cssAnimation 0s ease-in 5s forwards;
/* Firefox */
-webkit-animation: cssAnimation 0s ease-in 5s forwards;
/* Safari and Chrome */
-o-animation: cssAnimation 0s ease-in 5s forwards;
/* Opera */
animation: cssAnimation 0s ease-in 5s forwards;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
@keyframes cssAnimation {
to {
width:0;
height:0;
overflow:hidden;
}
}
@-webkit-keyframes cssAnimation {
to {
width:0;
height:0;
visibility:hidden;
}
}
這是從字面上端之間換出的屬性和開始狀態的情況下,您鏈接的目標問題。 – TylerH
@MattWeber引入依賴於另一種編程語言的庫並不比使用CSS在5秒後顯示隱藏元素更簡單。 – TylerH
@TylerH根據答案,有一個更好的方法來做相反的事情,另外,我不知道需要改變什麼,我已經玩過它但沒有成功。因此,爲什麼我提出了一個新問題,而不是將舊線程剔除。 –