0
我想要顯示我擁有的動畫,並從DOM中刪除元素,但通過刪除this
,動畫不顯示。animate.css並刪除元素
我已經嘗試使用setTimeout()
函數,但因爲我需要針對一個特定的元素,我無法弄清楚如何讓兩個執行!
這裏是代碼:
function anagramHitsTheBottom() {
$('.anagram').each(function() {
const position = Math.round($(this).position().top);
if (position >= 450) {
console.log(lifeScore);
lifeScore -= 1;
$lives.html(Lives Left: ${lifeScore});//Not Working
$(this).css('color','red');
$(this).addClass('animated hinge');
$(this).remove();
}
});
}
請忽略我沒有在$ {}我知道我需要他們用反引號!