develop
master
angular-menu-aim
angular-menu-aim
is a AngularJS friendly port of jQuery Menu Aim.
Installation
bower install angular-menu-aim
- Include
build/flyout-tpls.min.js
- Link
src/flyout.css
(or copy it into your your own CSS) - Include
neilff.flyout-tpls
into your Angular dependencies - Use the provided HTML structure
Usage
<flyout-navigation
visible="myCtrl.flyoutReveal">
<flyout-item
ng-repeat="item in categories track by $index">
<flyout-link>
{{ item.name }}
</flyout-link>
<flyout-popover>
<p>{{ item.name }}</p>
</flyout-popover>
</flyout-item>
</flyout-navigation>
Demos
Documentation
<flyout-navigation></flyout-navigation>
Refers to the wrapper for the navigation menu, supports the following properties:
visible {Boolean} (required)
- Is the menu visible or not. Used to trigger menu visiblity from a button.selector {String} (optional)
- CSS selector for theflyout-item
. Defaults topopover
.tolerance {Integer} (optional)
- how much tolerance to allow when user is entering submenu (default: 500)delay {Integer} (optional)
- how long (in milliseconds) to wait when user is entering submenu (default: 1000)direction {String} (optional)
- the direction of the submenu (right, left, below, above) (default: right)enter {Function} (optional)
- callback to execute when row is entered (default: set menu height)exit {Function} (optional)
- callback to execute when row is exited (default: nothing)activate {Function} (optional)
- callback to execute when row is activated (default: set menu height)deactivate {Function} (optional)
- callback to execute when row is deactivated (default: nothing)exitmenu {Function} (optional)
- callback to execute when user exits the menu (default: close menu)
<flyout-item></flyout-item>
Acts as a wrapper for each item in the menu. ng-repeat
over this to build the menu items.
<flyout-link></flyout-link>
Acts as a wrapper for the item link, this will appear in the menu flyout as the top level navigation items.
<flyout-popover></flyout-popover>
Acts as a wrapper for the item content, this will appear when a users hovers over a flyout-item
.