on this websiteトグルした画像でトラブルが発生しています。Javascript:同じ位置に画像を切り替える
ご覧のとおり、左側にコンテンツの表があり、右側に1つの画像が切り替わります。
これらの画像は同じ位置にはないが、各画像は「下に」移動しています。
どうすればいいですか?
これは私が使用しているCSSコードとJSスクリプトです:(画像を隠すために)
CSS
.haus-a-one,.haus-a-two,.haus-a-three,.haus-a-four,.haus-a-five,.haus-a-six,.haus-a-seven,.haus-a-eight {
display: none;
}
JS
<script>
jQuery(document).ready(function($){
$(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-2.even", function() {
$('.haus-a-one').toggle();
});
$(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-3.odd", function() {
$('.haus-a-two').toggle();
});
$(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-4.even", function() {
$('.haus-a-three').toggle();
});
$(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-5.odd", function() {
$('.haus-a-four').toggle();
});
$(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-6.even", function() {
$('.haus-a-five').toggle();
});
$(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-7.odd", function() {
$('.haus-a-six').toggle();
});
$(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-8.even", function() {
$('.haus-a-seven').toggle();
});
$(document.body).on("mouseenter mouseleave", ".tablepress-id-1 .row-9.odd", function() {
$('.haus-a-eight').toggle();
});
});
</script>
こんにちは、これは私が達成する必要があるものではありません。私が修正する必要があるのは、単一のテーブルの行にマウスを重ねて同じ位置にあるトグルされたイメージです。あなたが見ることができるように、それぞれの絵が動いているように見えます。ちょうど最初が上にあります。 –
改訂:tbaleの横にあるすべての画像は、テーブルの上端と左に垂直に配置する必要がありますか? – newBee
これは私がやりたいことです: –