mediarox/module-js-hc-offcanvas-nav
Composer 安装命令:
composer require mediarox/module-js-hc-offcanvas-nav
包简介
Magento 2 Module for HC Off-canvas Nav
README 文档
README
This repo is just an integration of original js-library including css into Magento 2.
JavaScript library for creating off-canvas multi-level navigations, using ARIA. Dependency free, but also works as a jQuery plugin.
See original repository for more information: https://github.com/somewebmedia/hc-offcanvas-nav
Installation
cd <magento_root> composer require mediarox/module-js-hc-offcanvas-nav bin/magento setup:upgrade
Usage example
?> <script> require([ 'jquery', 'hcOffcanvasNav' ], function ($, hcOffcanvasNav) { // create global instance. info: the call as jQuery plugin ($(selector).hcOffcanvasNav) does not work reliably. window.topMenuNavigation = new hcOffcanvasNav('nav.navigation', { disableAt: 768, labelBack: '<?= $escaper->escapeHtml(__('Back')) ?>', width: '100%', levelTitles: true, levelTitleAsBack: true }); // handle magento mobile nav trigger click. (the "customToggle" option causes collisions in the design.) $('[data-action="toggle-nav"]').on('click', function(event) { event.preventDefault(); window.topMenuNavigation.open(); }); }); </script>
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-02-14