%PDF- %PDF-
| Direktori : /home/bitrix/www/bitrix/wizards/bitrix/eshop/site/templates/eshop_adapt/ |
| Current File : //home/bitrix/www/bitrix/wizards/bitrix/eshop/site/templates/eshop_adapt/script.js |
function eshopOpenNativeMenu()
{
var native_menu = BX("bx_native_menu");
var is_menu_active = BX.hasClass(native_menu, "active");
if (is_menu_active)
{
BX.removeClass(native_menu, "active");
BX.removeClass(BX('bx_menu_bg'), "active");
BX("bx_eshop_wrap").style.position = "";
BX("bx_eshop_wrap").style.top = "";
BX("bx_eshop_wrap").style.overflow = "";
}
else
{
BX.addClass(native_menu, "active");
BX.addClass(BX('bx_menu_bg'), "active");
var topHeight = document.body.scrollTop;
BX("bx_eshop_wrap").style.position = "fixed";
BX("bx_eshop_wrap").style.top = -topHeight+"px";
BX("bx_eshop_wrap").style.overflow = "hidden";
}
var easing = new BX.easing({
duration : 300,
start : { left : (is_menu_active) ? 0 : -100 },
finish : { left : (is_menu_active) ? -100 : 0 },
transition : BX.easing.transitions.quart,
step : function(state){
native_menu.style.left = state.left + "%";
}
});
easing.animate();
}