Quick actions

cmd+k|ctrl+k

Navigation

Languages

jQuery, hover effect

Snippet info

Language

JavaScript

Visibility

public

Author

mynameisjoker

Created

2017-01-07T13:34:48Z

Updated

2017-01-07T13:35:20Z

function hoverButton() {
    $('#button').hover(function(){
        $(this).stop().animate( { opacity: ".6", bottom: "5px" }, 600  );
    }, function(){
        $(this).stop().animate( { opacity: "1", bottom: "0" }, 400  );
    });
}
INFO