Press "Enter" to skip to content

Angular Module And Component To Help You Display Your App | ngx-hover-opacity

ngx hover opacity library aims to provide a simple way to visually “disable” an entire HTML element. Angular module and component to help you display a nice scrolling effect on some HTML parts of your app.

hover effects css stackblitz, hover in html, html hover text popup, on hover javascript, image hover css

A Collection of Buttons With Cool Hover Effects | btns.css

How to make use of it:

Installation

$ yarn add ngx-hover-opacity

or

$ npm install ngx-hover-opacity --save

1. From your Angular module:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';

// import the module
import { NgxHoverOpacityModule } from 'ngx-hover-opacity';

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,

    // specify it as an import
    NgxHoverOpacityModule,
  ],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}

2. Once your library is imported, you can use the ngx-hover-opacity component in your Angular app:

<ngx-hover-opacity [isHoverVisible]="true">
  <div>Your content that might get hidden</div>
</ngx-hover-opacity>

Hover Effect On Element, ngx hover opacity Plugin/Github


See Demo And Download

Official Website(maxime1992): Click Here

This superior jQuery/javascript plugin is developed by maxime1992. For extra Advanced Usages, please go to the official website.

Be First to Comment

    Leave a Reply

    Your email address will not be published. Required fields are marked *