更改 div 不透明度,排除某些 div 内容 - jQuery
我有几个 .box div,包括短文本 (
) 和缩略图。当 .box 的任何部分悬停时,我试图更改 .box div 中文本的不透明度,但我不希望图像受到影响。到目前为止我已经明白了:
jQuery(document).ready(function(){
$(".box").fadeTo("fast", 0.6);
$(".box").hover(function(){
$(this).fadeTo("fast", 1.0);
},function(){
$(this).fadeTo("fast", 0.6);
});
});
我知道它一定很简单,但我被困住了。感谢您的帮助。
I have several .box div including short text (<p>
) and a thumbnail. I'm trying to change opacity of text within a .box div when any part of the .box is hovered, but I don't want the image affected. So far I've got this:
jQuery(document).ready(function(){
$(".box").fadeTo("fast", 0.6);
$(".box").hover(function(){
$(this).fadeTo("fast", 1.0);
},function(){
$(this).fadeTo("fast", 0.6);
});
});
I know it must be quite simple, but I'm stuck. Thanks for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
用户
$(".box p")
选择器User
$(".box p")
selector使用
.find()
获取< p>
内部应用淡入淡出,如下所示:这使用
$(".box p")
仅淡入淡出元素,然后在悬停中(对于整个框)我们在里面找到相同的
元素。如果您执行
$(".box p").hover(...)
,则仅将鼠标悬停在本身上即可。
Use
.find()
to get just the<p>
inside to apply fade to, like this:This uses
$(".box p")
to only fade the<p>
elements initially, then in the hover (for the entire box) we're finding the same<p>
elements inside. If you did$(".box p").hover(...)
only hovering on the<p>
itself would work.您可以将缩略图放在要淡入淡出的框外,或者使用更精确的选择器,例如 $('.box p')。取决于您是否想让盒子装饰本身褪色,或者只是文本。
这也可能有效:
You could probably place the thumbnail image outside the box you're trying to fade or use a more precise selector like $('.box p'). Depends if you want to have the box decoration itself fade, or just the text.
this might also work: