31

这是我的 HTML 代码:

<div id="showmenu">Click Here</div>
<div class="menu" style="display: none;">
    <ul>
        <li>Button1</li>
        <li>Button2</li>
        <li>Button3</li>
    </ul>
</div>

我想显示.menu点击#showmenu从左到右滑动(带动画)。再次单击#showmenu站点页面或站点页面中的任何位置时,.menu将隐藏(滑回左侧)。

我使用 JQuery 2.0.3

我已经尝试过了,但它并没有达到我想要的效果。

$(document).ready(function() {
    $('#showmenu').toggle(
        function() {
            $('.menu').slideDown("fast");
        },
        function() {
            $('.menu').slideUp("fast");
        }
    );
});
4

6 回答 6

63

.toggle()方法在 1.9 版中已从jQuery 中删除。你可以这样做:

$(document).ready(function() {
    $('#showmenu').click(function() {
            $('.menu').slideToggle("fast");
    });
});

演示:http: //jsfiddle.net/APA2S/1/

...但是与您问题中的代码一样,它会向上或向下滑动。要向左或向右滑动,您可以执行以下操作:

$(document).ready(function() {
    $('#showmenu').click(function() {
         $('.menu').toggle("slide");
    });
});

演示:http: //jsfiddle.net/APA2S/2/

请注意,这需要jQuery-UI 的幻灯片效果,但是您将该标签添加到您的问题中,所以我认为这没问题。

于 2013-07-14T11:46:25.823 回答
13

当然slideDownslideUp不要做你想做的事,你说你希望它是左/右,而不是上/下。

如果您对添加jquery-ui标签的问题进行编辑意味着您正在使用 jQuery UI,我会使用nnnnnn 的解决方案,使用 jQuery UI 的slide效果。

如果不:

假设菜单开始可见(编辑:哎呀,我认为这不是一个有效的假设;请参见下面的注释),如果您希望它向左滑出然后从左侧滑回,您可以这样做:实例| 直播源

$(document).ready(function() {
    // Hide menu once we know its width
    $('#showmenu').click(function() {
        var $menu = $('.menu');
        if ($menu.is(':visible')) {
            // Slide away
            $menu.animate({left: -($menu.outerWidth() + 10)}, function() {
                $menu.hide();
            });
        }
        else {
            // Slide in
            $menu.show().animate({left: 0});
        }
    });
});

您需要放置position: relative菜单元素。

请注意,我将您的替换toggleclick,因为该形式toggle已从 jQuery 中删除。


如果你想让菜单开始隐藏,你可以调整上面的。基本上,在将元素放在页面外时,您想知道元素的宽度。

此版本不关心菜单最初是否可见:Live Copy | 直播源

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<div id="showmenu">Click Here</div>
<div class="menu" style="display: none; position: relative;"><ul><li>Button1</li><li>Button2</li><li>Button3</li></ul></div>
  <script>
    $(document).ready(function() {
        var first = true;

        // Hide menu once we know its width
        $('#showmenu').click(function() {
            var $menu = $('.menu');
            if ($menu.is(':visible')) {
                // Slide away
                $menu.animate({left: -($menu.outerWidth() + 10)}, function() {
                    $menu.hide();
                });
            }
            else {
                // Slide in
                $menu.show().css("left", -($menu.outerWidth() + 10)).animate({left: 0});
            }
        });
    });
  </script>
</body>
</html>
于 2013-07-14T11:45:40.397 回答
2

我会做这样的事情

JsBin 中的演示:http : //jsbin.com/ofiqur/1/

  <a href="#" id="showmenu">Click Here</a>
  <div class="menu">
    <ul>
      <li><a href="#">Button 1</a></li>
      <li><a href="#">Button 2</a></li>
      <li><a href="#">Button 3</a></li>
    </ul>
  </div>

和在 jQuery 中一样简单

var min = "-100px", // remember to set in css the same value
    max = "0px";

$(function() {
  $("#showmenu").click(function() {

    if($(".menu").css("marginLeft") == min) // is it left?
      $(".menu").animate({ marginLeft: max }); // move right
    else
      $(".menu").animate({ marginLeft: min }); // move left

  });
});
于 2013-07-14T11:51:46.063 回答
0
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $(".click-header").click(function(){
            $(this).next(".hidden-content").slideToggle("slow");
            $(this).toggleClass("expanded-header");
        });
    });
</script>
.demo-container {
    margin:0 auto;
    width: 600px;
    text-align:center;
}
.click-header {
    padding: 5px 10px 5px 60px;
    background: url(images/arrow-down.png) no-repeat 50% 50%;
}
.expanded-header {
    padding: 5px 10px 5px 60px;
    background: url(images/arrow-up.png) no-repeat 50% 50%;
}
.hidden-content {
    display:none;
    border: 1px solid #d7dbd8;
    padding: 20px;
    text-align: center;
}
<div class="demo-container">
    <div class="click-header">&nbsp;</div>
    <div class="hidden-content">Lorem Ipsum.</div>
</div>
于 2014-03-19T02:25:35.693 回答
0

尝试这个:

<script type="text/javascript">
$.fn.toggleFuncs = function() {
    var functions = Array.prototype.slice.call(arguments),
    _this = this.click(function(){
        var i = _this.data('func_count') || 0;
        functions[i%functions.length]();
        _this.data('func_count', i+1);
    });
}
$('$showmenu').toggleFuncs(
        function() {
           $( ".menu" ).toggle( "drop" );
            },
            function() {
                $( ".menu" ).toggle( "drop" );
            }
); 

</script>

第一个功能是 JQuery deprecated toggle 的替代方法 :) 。适用于 JQuery 2.0.3 和 JQuery UI 1.10.3

于 2015-06-19T07:24:30.940 回答
0

使用持续时间以毫秒为单位的 slideToggle(500) 函数以获得更好的效果。

示例 HTML

<body>
    <div class="growth-step js--growth-step">
        <div class="step-title">
            <div class="num">2.</div>
            <h3>How Can Aria Help Your Business</h3>
        </div>
        <div class="step-details ">
            <p>At Aria solutions, we’ve taken the consultancy concept one step further by offering a full service
                management organization with expertise. </p>
        </div>
    </div>
    <div class="growth-step js--growth-step">
        <div class="step-title">
            <div class="num">3.</div>
            <h3>How Can Aria Help Your Business</h3>
        </div>
        <div class="step-details">
            <p>At Aria solutions, we’ve taken the consultancy concept one step further by offering a full service
                management organization with expertise. </p>
        </div>
    </div>
</body>

在您的 js 文件中,如果您需要动画的子传播,则删除第二次点击事件函数及其代码。

$(document).ready(function(){
    $(".js--growth-step").click(function(event){
       $(this).children(".step-details").slideToggle(500);
         return false;
    });
//for stoping child to manipulate the animation
    $(".js--growth-step .step-details").click(function(event) {
        event.stopPropagation();
   });
});
于 2020-07-04T12:18:15.003 回答