gpt4 book ai didi

javascript - 当悬停标题更改不透明度图像时

转载 作者:太空宇宙 更新时间:2023-11-04 14:26:27 26 4
gpt4 key购买 nike

我还需要在悬停标题时更改图像的不透明度。现在我只有在悬停图像时才有不透明度。

请在此处查看示例 fiddle 脚本: http://jsfiddle.net/fourroses666/EmsaG/1/

JS:

$(document).ready(function(){    
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
});

HTML:

<div class="m-blok one">
<h3 class="m-kop"><a href="#">Some header</a></h3>
<img class="a" src="http://tinyurl.com/732qwvt" width="178" height="78" alt="" style="opacity: 1;">
<img class="b" src="http://tinyurl.com/nrbj2uk" width="178" height="78" alt="" />
</div>

CSS

.m-blok{width:178px; height:78px; position:relative; margin:15px;}

img.a {left: 0; position: absolute; top: 0; z-index: 10;}
img.b {left: 0; position: absolute; top: 0;}

.m-kop{position:absolute; z-index:11; color:#fff; margin:55px 0 0 5px; max-width:150px; background:#f00;}
.m-kop a, .m-kop a:hover{color:#fff; text-decoration:none;}

最佳答案

根据您已经完成的工作,您可以这样做:

$(document).ready(function(){    
$("img.a, .m-kop").hover(
function() {
$("img.a").stop().animate({"opacity": "0"}, "slow");
},
function() {
$("img.a").stop().animate({"opacity": "1"}, "slow");
});
});

关于javascript - 当悬停标题更改不透明度图像时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19518178/

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