document.getElementById("both-gif").onmouseover=function() {MouseOver()};
document.getElementById("both-gif").onmouseout=function() {MouseOut()};
function MouseOver() {
document.getElementById("both-gif").addClass("animated bounce")
}
function MouseOut() {
document.getElementById("both-gif").removeClass("animated bounce")
}
私のgifイメージをバウンスさせようとしていますが、idは "both-gif"です。私は間違って何をしていますか?mouseoverイベントのアニメーションが機能しません
にも
このラインにそれを変更する必要が
document.getElementById
ではない連鎖jQueryの機能私たちは、あなたのHTMLせずに言うことができないことができますとCSS。 '<>'をクリックして[mcve]を作成してください。最初の間違いはDOM要素のjQueryを使用しています – mplungjan