Skip to content

A vanilla js library to show preview images on hover

Notifications You must be signed in to change notification settings

maikttt/hover-preview

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hover Preview

A vanilla js library to show preview images on hover, check a Demo here

Please watch 👀 or star 🌟 this repo if you like it.

preview

Getting started

  1. Grab the minified js code, from here.

  2. Add hover-preview.min.js to bottom of your body tag, example -

    <script defer src='/js/hover-preview.min.js'></script>
  3. Add class hover-preview to img tag that should have preview behaviour.

    <img src="poster.jpg" class="hover-preview" />
  4. Add data-preview attribute with pipe(|) seperated preview image urls, example

    <img
      src="poster.jpg"
      class="hover-preview"
      data-preview="preview1.jpg|preview2.jpg|preview3.jpg"
    />

Build minified bundle

$ yarn build

About

A vanilla js library to show preview images on hover

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 62.7%
  • JavaScript 24.3%
  • CSS 13.0%