帮我完善我的 jQuery 淡入淡出动画

发布于 2024-12-01 06:37:49 字数 472 浏览 2 评论 0原文

好吧,伙计们,我有一系列 7 张图像,当您将鼠标悬停在所选图像上时,其余图像会淡入背景图像。我在悬停时淡入/淡出时得到了奇怪的频闪效果。关于如何获得这样的效果,当您从一个移动到另一个时,只有现在未选择的一个淡出而所选的一个淡入?有什么想法吗?这是我的代码...

$('img','.p_div').hover(function(e){
$('img','.p_div').stop(true,true).not(this).fadeOut();  
},function(e){
$('img','.p_div').stop(true,true).fadeIn(); 
});

这是网站...

http://creativerxawards.com/dudnyk/people/< /a>

Ok guys I have a series of 7 images that the rest fade to the background image when you roll over the selected one. i'm getting an odd strobe effect with the fade in/fade out on the hover. any idea on how to get the effect that when you move from one to the other just the now unselected one fades out and the selected one fades in? here's my code...

$('img','.p_div').hover(function(e){
$('img','.p_div').stop(true,true).not(this).fadeOut();  
},function(e){
$('img','.p_div').stop(true,true).fadeIn(); 
});

and here's the site...

http://creativerxawards.com/dudnyk/people/

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

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

发布评论

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

评论(1

送舟行 2024-12-08 06:37:49
$('img','.p_div').hover( 
  function(e){
   $('img','.p_div').not(this).stop(true,true).fadeOut();  
  },
  function(e){
   $('img','.p_div').fadeIn(); 
});
$('img','.p_div').hover( 
  function(e){
   $('img','.p_div').not(this).stop(true,true).fadeOut();  
  },
  function(e){
   $('img','.p_div').fadeIn(); 
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文