0

我在这种情况下,我想在我的网站上显示默认文本,当将鼠标悬停在三个不同的图像上时,默认文本应该更改为三个不同的文本。

正如您在我的小提琴中看到的那样,我做到了这一点 - 但如果我将鼠标快速移动到所有三个图像上,那么并非所有文本都会正确消失。我如何实现这一目标?

我的图像 JavaScript 代码:

$().ready(function () {
 $("#image1").hover(

 function () {
     $("#default").hide(timer,

     function () {
         $("#content1").show(timer,

         function () {})
     });
 },

 function () {
     $("#content1").hide(timer, function () {
         $("#default").show(timer,

         function () {});
     });
 });
});

附言。如果仅使用 HTML 和 CSS 就可以做到这一点 - 那也没关系。

我的 jsfiddle:http: //jsfiddle.net/T4BCx/4/

4

2 回答 2

4

这是因为动画命令的排队性质,在您的情况下,您需要强制 jQuery 在显示/隐藏元素之前完成所有先前排队的动画。您可以使用.stop()来执行此操作。

此外,您的解决方案看起来很复杂,我也做了一些 dom 更改以使其简单

<table>
    <tr>
        <td>
            <img src="http://placehold.it/150x150" id="image1" alt="description" width="150px" class="content-img" data-target="#content1" />
        </td>
        <td>
            <img src="http://placehold.it/150x150" id="image2" alt="description" width="150px" class="content-img" data-target="#content2" />
        </td>
        <td>
            <img src="http://placehold.it/150x150" id="image3" alt="description" width="150px" class="content-img" data-target="#content3" />
        </td>
    </tr>
    <tr>
        <td colspan="3" style="height:100px">
            <div id="default">
                 <h1>default</h1>

                <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
            </div>
            <div id="content1">
                 <h1>content 1</h1>

                <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
            </div>
            <div id="content2">
                 <h1>content 2</h1>

                <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
            </div>
            <div id="content3">
                 <h1>content 3</h1>

                <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
            </div>
        </td>
    </tr>
</table>

然后

//initial
var timer = 200;
jQuery(function ($) {
    var inside = false;
    $("#content1, #content2, #content3").hide();
    $(".content-img").hover(function () {
        inside = true;
        var $target = $($(this).data('target'));
        $("#default").stop(true, true).hide(timer, function () {
            if (inside) {
                $target.stop(true, true).show(timer);
            }
        });
    }, function () {
        inside = false;
        $($(this).data('target')).stop(true, true).hide(timer, function () {
            if (!inside) {
                $("#default").stop(true, true).show(timer);
            }
        });
    });

});

演示:小提琴

于 2013-10-25T09:13:00.487 回答
1

我试过这样

$("img").hover(function () {
    var value = $(this).attr("id").substr($(this).attr("id").length-1);
    $('div[id="default"]').find('h1').text("Content" + value);
    $('div[id="default"]').find('p').text("Content of Image" + value);
});

$("img").mouseout(function(){
$('div[id="default"]').find('h1').text("Default");
    $('div[id="default"]').find('p').text("Lorem ipsum dolor sit amet, consectetur adipiscing elit.")
})

现场演示

于 2013-10-25T09:32:29.567 回答