angular-show-on-hover
v1.2.2
Published
Angular directive that when used on element it toggles visibility of child element based on hover state of parent element
Downloads
7
Readme
What
This Angular module provides simple directive that allows element to control visibility of child element based on element mouse hover state. It doesn't rely on Angular builtin directives so digest cycle won't be trigger at all.
Install
$ npm install --save angular-show-on-hover
Usage
angular
.module('app', [
require('angular-show-on-hover')
])
<div show-on-hover="span"><span></span></div>