行に4つの画像を含むdivと、次の行に4つすべての長さのdivがあります。
私がしたいのは、hover および toggleclass 関数を適用して、一番上の 4 行の画像のそれぞれにカーソルを合わせると、下の div の背景画像が変化するようにすることです。これは可能ですか?どうすればいいですか?
<div id="float3_1">
<img id= "twit" src= "face.jpg" width= "240px">
<img id = "twit" src= "twit.jpg" width= "240px">
<img id= "twit" src= "goog.jpg" width= "240px">
<img idc= "twit" src= "insta.jpg" width= "240px">
<div class="divbelow"></div>
</div>
<script type= "text/javascript">
$('#twit').hover(function () {
$(.divbelow).toggleClass('image1', 500);
}, function () {
$(this).toggleClass('image1', 1000 );
});
</script>