简体   繁体   中英

jquery animate - how to slide in and out on second click?

How to slide out on click and slide in on click using jquery animate? In my code (below) I slide out a div, but cant get it to slide back in based on click. How could I do that? Thanks!

html:

<nav>
    <ul id="menu">
        <span id="toggle" class="glyphicon glyphicon-align-justify"></span>
        <li><span class="glyphicon glyphicon-home"></span><a>Home</a></li>
        <li><span class="glyphicon glyphicon-user"></span><a>About</a></li>
        <li><span class="glyphicon glyphicon-blackboard"></span><a>Portfolio</a></li>
        <li><span class="glyphicon glyphicon-envelope"></span><a>Contact</a></li>
    </ul>
</nav>

js:

$('#toggle').click(function() {
    if ('#menu'){
        $('#menu').animate({
            //  height: 'toggle'
        }, 1500, function() {
        });
    }
 });

There is a function named is in the jQuery library. You can use it to check if input is hidden or shown:

if ($('#x').is(':visible')) {
    $('#x').slideUp('fast');
} else {
    $('#x').slideDown('fast');
}

I think you can simply use slideToggle() .

$('#toggle').click(function() {
  $('#menu').slideToggle();
});

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