Jquery从右边的小提琴滑动而不是在现场工作

时间:2013-09-27 03:04:44

标签: javascript jquery css

我有滑动内容(用于移动设备的菜单)。

我在这里工作:http://jsfiddle.net/NfXTY/7/其中内容最初不可见,然后从右侧滑入,然后返回右侧滑动并隐藏。

我遇到的问题是,在网站上它从左边滑入,我没有得到,因为我的小提琴工作得很好?

编辑:更新了网站上的以下代码

JS:

jQuery('.nav-toggle').click(function () {
    var $marginLefty = jQuery('#navigation');
    $marginLefty.animate({
        right: parseInt($marginLefty.css('right'), 10) == 0 ? -$marginLefty.outerWidth() : 0
    });
});

CSS:

#navigation {
background-color: #44CC55;
bottom: 0;
color: #333333;
height: 36px;
right: -350px;
padding: 6px;
width: 338px;
position: absolute;

}

0 个答案:

没有答案