Package Exports
- poppy
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (poppy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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