简体   繁体   中英

Switch between Fade in and Fade out on click

I want to use jQuery to fade in a div when an image is clicked, when the image is clicked again, I want it to hide and so on.

How would I do this?

I basically need a toggle switch.

$('#my_img_selector').click(function(){$('#my_div_selector').fadeToggle()});

Try it out here .

Try also slideToggle() and toggle() in place of fadeToggle() .

You have to change the selectors $('#fadeMe') and $('#bindImage') according to your markup. The magic is here

$(document).ready(function(){
    $('#bindImage').on('click', function(){
        $('#fadeMe').fadeToggle();
        //return false; // only useful if you trigger an <a href="#"></a>
    });
});
$('#yourimage').on('click', function(event){
 if ($("#something").is(':visible')) {
 $(".something").hide("drop", {
    direction: "up"
  }, 2000);
}else{
  $(".something").show("drop", {
    direction: "up"
  }, 2000);
}
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM