nav-toggle
我有一个菜单会在单击课程时滑出。
现在我还希望nav-toggle
类(菜单图标)从右侧沿 226px 移动,因此它与#navigation
菜单同时移动。然后,如果再次单击,它将折叠菜单(就像当前所做的那样)并返回right:0
原位。
请参阅我在倒数第三行中的注释
jQuery('.nav-toggle').click(function () {
var $marginLefty = jQuery('#navigation');
$marginLefty.animate({
right: parseInt($marginLefty.css('right'), 10) == 0 ? -$marginLefty.outerWidth() : 0
});
jQuery('.nav-toggle').animate({
right: "226px"
// How do I make it so if it is at 226px when clicked
// it should then go to "right: 0", that toggle effect as above
});
});