gpt4 book ai didi

javascript - 通过将鼠标悬停在另一个图像上来隐藏动画图像

转载 作者:行者123 更新时间:2023-11-28 11:33:20 25 4
gpt4 key购买 nike

我有一个用鼠标固定的图像,我在它周围移动,还有另一个图像用 jquery 设置动画,现在如果我把固定图像悬停在需要隐藏的动画图像上。我用过的某种代码,但没有用

 $('#basketimg').mouseenter(function(){
$('#my_img').stop().animate({top:'0px'})
$('#my_img').hide();
})

我用 google 搜索了一下,但找不到 jquery 中的某种代码。

请帮忙,谢谢!

最佳答案

请试试这个

$("#basketimg").hover(function () {
$('#my_img').hide("slide", { direction: "left" }, 500);
}, function () {
$('#my_img').show("slide", { direction: "left" }, 500);
});

谢谢。

关于javascript - 通过将鼠标悬停在另一个图像上来隐藏动画图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21039285/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com