jQuery:向左滑动并向右滑动

时间:2010-03-09 18:02:14

标签: javascript jquery html css

我在jQuery中看到了slideUpslideDown。左右滑动的功能/方式怎么样?

4 个答案:

答案 0 :(得分:66)

您可以使用jQuery UI中的其他效果执行此操作:See here for details

快速举例:

$(this).hide("slide", { direction: "left" }, 1000);
$(this).show("slide", { direction: "left" }, 1000);

答案 1 :(得分:21)

如果你不想要像jQuery UI这样臃肿的东西,请尝试我的自定义动画:https://github.com/yckart/jquery-custom-animations

对您而言,blindLeftToggleblindRightToggle是合适的选择。

http://jsfiddle.net/ARTsinn/65QsU/

答案 2 :(得分:5)

您始终可以使用jQuery添加类.addClass.toggleClass。然后,您可以将所有样式保存在CSS中,而不是脚本中。

http://jsfiddle.net/B8L3x/1/

答案 3 :(得分:0)

此代码效果很好:

<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
        <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
        <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
        <script>
            $(document).ready(function(){
            var options = {};
            $("#c").hide();
            $("#d").hide();
            $("#a").click(function(){
                 $("#c").toggle( "slide", options, 500 );
                 $("#d").hide();
            });
            $("#b").click(function(){
                 $("#d").toggle( "slide", options, 500 );
                 $("#c").hide();
                });
            });
        </script>
        <style>
            nav{
            float:left;
            max-width:300px;
            width:300px;
            margin-top:100px;
            }
            article{
            margin-top:100px; 
            height:100px;
            }
            #c,#d{
            padding:10px;
            border:1px solid olive;
            margin-left:100px;
            margin-top:100px;
            background-color:blue;
            }
            button{
            border:2px solid blue;
            background-color:white;
            color:black;
            padding:10px;
            }
        </style>
    </head>
    <body>
        <header>
            <center>hi</center>
        </header>
        <nav>
            <button id="a">Register 1</button>
            <br>
            <br>
            <br>
            <br>
            <button id="b">Register 2</button>
         </nav>

        <article id="c">
            <form>
                <label>User name:</label>
                <input type="text" name="123" value="something"/>
                <br>
                <br>
                <label>Password:</label>
                <input type="text" name="456" value="something"/>
            </form>
        </article>
        <article id="d">
            <p>Hi</p>
        </article>
    </body>
</html>

参考:W3schools.com和jqueryui.com

注意:这是一个示例代码 不要忘记添加所有脚本标记,以实现代码的正常运行。