帮我完善我的 jQuery 淡入淡出动画
好吧,伙计们,我有一系列 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();
});
这是网站...
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...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)