我有一個表格單元格和標識符,使其在頁面加載後的幾秒鐘內逐漸消失。動畫不透明不起作用,因爲它留下了一個空白區域,並且動畫顯示選項不是漸變的。我怎樣才能做到這一點,使用CSS類? (或JavaScript函數或任何你告訴我)使表格單元格逐漸消失,不留空格
這裏是我的代碼:
echo '
<tr id="errore">
<td id="errore"colspan="4" class="object line" style="background-color: #FFD927; color:white;">'.$_SESSION["errore"].'</td>
</tr>';
在此先感謝!
這裏的CSS部分
@-webkit-keyframes disappear {
0% {opacity:1}
100% {opacity:0}
}
#errore, #messaggio{
-webkit-animation-name: disappear ;
-webkit-animation-duration: 1s;
-webkit-animation-delay: 1s;
-webkit-animation-fill-mode: forwards;
}
只是提到:你使用了兩次id'errore',這是不合法的html。另外,請添加您嘗試使用不透明度動畫的代碼。 – jhinzmann
@jhinzmann是的,你現在的位置是: –