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

时间:2013-05-14 19:36:32

标签: javascript jquery html5

我在背景图片上应用了淡出效果。如何在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);
});

2 个答案:

答案 0 :(得分:4)

你首先没有使用$img variable ..所以第一个不需要回调函数..

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

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');
});

答案 1 :(得分:0)

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