JQuery:如何更改鼠标悬停事件上的图形?

发布于 2024-08-19 13:30:55 字数 486 浏览 11 评论 0原文

使用 JQuery,当我将鼠标悬停在 HTML 表/div 中的一行上时,如何更改地图图标?

这是一个示例:

http: //www.sfsunriseidx.com/homes/94131/?uuid=9ed7269b-5327-4c88-ba15-f700ed343d69&source=REDIR

请注意,当您将鼠标悬停在左侧的家庭列表上时,相应的地图图标会出现正确的改变。

问题:如何使用 JQuery 模拟此功能?


更新:下面建议用 ID 链接这两个元素。如果是这样的话,你还如何完成这件事呢?

Using JQuery, how do I change a map icon whenever I mouse hover over a row in an HTML table/div?

Here is an example:

http://www.sfsunriseidx.com/homes/94131/?uuid=9ed7269b-5327-4c88-ba15-f700ed343d69&source=REDIR

Notice when you mouse hover over a home listing on the left, the corresponding map icon on the right changes.

Question: how do I emulate this functionality using JQuery?


Update: It was suggested below that an ID linked the two elements. If that is the case, how would you still accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

鸢与 2024-08-26 13:30:55

在 html 中使用 for="" 属性,如

<a href="page.html" for="mapIcon4" class="mapHover">Hover Link</a>

在图像上:

<img id="mapIcon4" src="myImg.png" />

jQuery,使用悬停函数对相应的ID进行动画处理,与for中的相同:

$(".mapHover").hover(function() {
  $("#" + $(this).attr('for')).animate({"left": "-=50px"}, "slow");
}, function() {
  $("#" + $(this).attr('for')).animate({"right": "+=50px"}, "slow");
});

Use the for="" attribute in html, like

<a href="page.html" for="mapIcon4" class="mapHover">Hover Link</a>

On the image:

<img id="mapIcon4" src="myImg.png" />

jQuery, using the hover function to animate the corresponding ID, the same one in the for:

$(".mapHover").hover(function() {
  $("#" + $(this).attr('for')).animate({"left": "-=50px"}, "slow");
}, function() {
  $("#" + $(this).attr('for')).animate({"right": "+=50px"}, "slow");
});
银河中√捞星星 2024-08-26 13:30:55

可能这两个元素都通过 ID 链接。

Probably both elements are linked by a ID..

遗失的美好 2024-08-26 13:30:55

像这样的事情:

$(document).ready(function() {
    var googleMap = $("#googleMaps");

    $('a', '#mapLinks').hover(function() {
        var index = $(this).index(this);
        $('img:eq(' + index + ')', googleMap).animate({
            width: '+=10%'
        });
    }, function() {
        var index = $(this).index(this);
        $('img:eq(' + index + ')', googleMap).animate({
            width: '-=10%'
        });
    });
});

只需确保更改“#googleMaps”和“#mapLinks”即可:)

Something like this:

$(document).ready(function() {
    var googleMap = $("#googleMaps");

    $('a', '#mapLinks').hover(function() {
        var index = $(this).index(this);
        $('img:eq(' + index + ')', googleMap).animate({
            width: '+=10%'
        });
    }, function() {
        var index = $(this).index(this);
        $('img:eq(' + index + ')', googleMap).animate({
            width: '-=10%'
        });
    });
});

Just make sure you change the "#googleMaps" and "#mapLinks" thing :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文