Skip to content

estrattonbailey/poppy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

poppy

A tiny, fast, configurable popover in 1.6kb. 🍻

Usage

import Poppy from 'poppy'

const target = document.getElementById('target')

const pop = new Poppy({
  target: target,
  popover: `
    <div class='my-popover'>
      <h5 class='mv0'>I'm a popover!</h5>
    </div>
  `,
  position: 'left', // from tackjs
  transitionSpeed: 200, // for css transitions
  onChange: ({ pinned }) => {...} // boolean
})

target.addEventListener('mouseenter', pop.pin)
target.addEventListener('mouseleave', pop.unpin)

Required CSS:

.poppy {
  position: absolute;
  z-index: 9999;
  top: 0; left: 0;
}

The Name

Huge thanks to swathysubhash for letting me use the name! This library used to be called micro-popover.

License

MIT License (c) 2018 Eric Bailey

About

A tiny, fast, configurable popover in 1.6kb.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published