Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

angular-show-on-hover

v1per6MIT1.2.2

Angular directive that when used on element it toggles visibility of child element based on hover state of parent element

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.

demo

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>