Skip to content

phanindra48/link-preview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hyperlink previews on hover

Setup

Add below script in head tag of your html file

<script src="https://cdn.linkpreview.org/js/previewer.js"></script>

Add class to DOM element to get snippets on hover

<a href="https://medium.com/personal-growth/the-most-important-skill-nobody-taught-you-9b162377ab77" class="preview_class">Link</a>

To initialize previewer add below snippet in your html

  previewer.init({
    // optional
    defaults: {
      ...
    },
    API_KEY: 'YOU_API_KEY',
    selector: '.preview_class'
  });

Make sure to initialize after page load

// vanilla javascript
window.onload = () => {
  // initialize here
}

(or)

// if you are using jquery
$( document ).ready(() => {
  // initialize here
})

Supported Previews

Articles

1

Youtube / Vimeo/ Dailymotion videos are supported

Youtube Vimeo Dailymotion

About

Hyperlink previews on hover

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published