gpt4 book ai didi

Javascript 改变一切的不透明度,但悬停图像

转载 作者:行者123 更新时间:2023-11-28 15:01:34 27 4
gpt4 key购买 nike

http://vanhoesenarchitecture.com/completed-works/

我搜索并找到了几个选项,但都没有用。另外,在我的例子中,他们不是 sibling ,所以我正在努力让它发挥作用。这是我正在使用的代码:

(function($){
jQuery('img').hover(function() {
jQuery('img').not(this).addClass('hovered');
console.log("HOVERED");
}, function() {
jQuery('img').removeClass('hovered');
console.log("NOT HOVERED");
});
})(jQuery);

CSS:

.hovered {opacity: 0.5;filter: alpha(opacity=50);}

如有任何帮助,我们将不胜感激!

最佳答案

/*(function($) {
jQuery('img').hover(
function() {
jQuery('img').not(this).addClass('hovered');
console.log("HOVERED");
},
function() {
jQuery('img').removeClass('hovered');
console.log("NOT HOVERED");
});
})(jQuery);

*/

$(document).ready(function() {
$('img').hover(
function() {
jQuery('img').not(this).addClass('hovered');
console.log("HOVERED");
},
function() {
jQuery('img').removeClass('hovered');
console.log("NOT HOVERED");
}
);
});
img {
width: 100px;
height: 100px;
}

img.hovered {
opacity: 0.5;
filter: alpha(opacity=50);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

<img src='http://vanhoesenarchitecture.com/wp-content/uploads/2017/10/lone-pine-lodge-17.jpg'>

<img src='http://vanhoesenarchitecture.com/wp-content/uploads/2017/10/lone-pine-lodge-17.jpg'>

关于Javascript 改变一切的不透明度,但悬停图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50065662/

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