gpt4 book ai didi

javascript - 如何在 jQuery mouseout 上应用原始样式

转载 作者:搜寻专家 更新时间:2023-10-31 08:19:38 24 4
gpt4 key购买 nike

我在背景图像上应用了淡出效果。如何在 mouseout 上缓慢应用回原始样式?

jsfiddle:http://jsfiddle.net/KevinOrin/H6Q3J/

jQuery('.square-section').mouseover(function(){
jQuery(this).fadeTo('slow',0.3, function(){
jQuery(this).css('background-image', 'url(' + $img + ')');
}).fadeTo('slow',1);
});

最佳答案

您首先没有使用 $img 变量 ..所以首先不需要回调函数..

如果您要完全更改图像,回调函数可能会在此处提供帮助。

jQuery('.square-section').hover(function(){
jQuery(this).fadeTo('slow',0.3);
}, function() {
jQuery(this).fadeTo('slow',1);
});

Check Fiddle

如果你想交换 2 个不同的图像你可以试试这个方法

jQuery('.square-section').hover(function(){
jQuery(this).fadeTo('slow', 0.3, function() {
jQuery('.square', this).removeClass('square-chess').addClass('square-chart');
jQuery(this).fadeTo('fast', 1);
});
}, function() {
jQuery(this).fadeTo('fast', 0.3, function() {
jQuery('.square', this).removeClass('square-chart').addClass('square-chess');
jQuery(this).fadeTo('fast', 1);
});
});

Fiddle with 2 images

jQuery('.square-section').hover(function () {
jQuery('.square', this).removeClass('square-chess').addClass('square-chart');
}, function () {
jQuery('.square', this).removeClass('square-chart').addClass('square-chess');
});

关于javascript - 如何在 jQuery mouseout 上应用原始样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16551431/

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