如何重置Jquery动画?

时间:2016-04-09 20:51:35

标签: jquery css

我有一个可以打开/关闭的按钮。 如果它已关闭,我想重置所有使用.animate更改的css值,我该怎么办?

$('.switch1').click(function(){
    if ($('.switch1').attr('src') == 'img/off.png') {
        $('.switch1').attr('src', 'img/on.png');

        $(".img_2").fadeIn(200)
        $(".img_2").animate({"margin-left" : '-600px', "margin-top" : '-500px'}, 1500);

        $( ".img_1" ).fadeIn(400)
        $('.img_1').animate({"margin-top": '-300px'}, 3500);
    } else {
        $('.switch1').attr('src', 'img/off.png');
    }
});

0 个答案:

没有答案