从左到右滑动jquery

时间:2015-08-21 03:28:28

标签: javascript jquery html css

我有一个div,我想在按钮点击时从左侧滑动。最终我想让div有一个负面因此它在屏幕上直到切换。如果再次单击该按钮,则应关闭该按钮。我尝试过动画,但似乎无法让它正常工作。这是我的代码。

这是css

 .feature_content {
        width: 25%;
        height: 100%;
        position: fixed;
        top: 0px;
        bottom: 0px;
        right: 0px;
        overflow: hidden;
        display: none;

这是javascript

     $("button").click(function(){
    $(".feature_content").toggle({left: -423});

这是html

<div class="feature_content">
   this is the div to toggle
</div>


<button>This is the button</button>

1 个答案:

答案 0 :(得分:0)

$(document).ready(function(){$(&#34; button&#34;)。click(function(){$(&#34; .feature_content&#34;)。toggle({left: -423}); }); });