Socket
Book a DemoInstallSign in
Socket

ceri-tooltip

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ceri-tooltip

a mobile-friendly tooltip

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

ceri-tooltip

a mobile-friendly tooltip.

Features:

  • plain JS - no dependencies
  • 28kB unzipped with animations - even smaller when using multiple ceri components
  • themeable
  • use in your markup - easy to reason about
  • aware of the viewport - automatically changes opening direction to be visible
  • use css margin to position tooltip

Demo

Install

npm install --save-dev ceri-tooltip

Usage

window.customElements.define("ceri-tooltip", require("ceri-tooltip"))
<!-- as sibling (preferred) -->
<button>hover or touch-hold</button>
<ceri-tooltip>Information</ceri-tooltip>
<!-- as child -->
<button>hover or touch-hold
  <ceri-tooltip>Information</ceri-tooltip>
</button>

For examples see dev/.

Props

Nametypedefaultdescription
offsetNumber0offset to the parent
anchorStringisMobile ? "wnse" : "senw"direction of opening, viewport dependent. "s" forces to open down. "sn" would try to open down, then up.
delay-touchNumber200duration to wait after touchstart
delay-hoverNumber400duration to wait after hover
openBooleanfalseset to open / close
on-bodyBooleanfalsewill be positioned on body instead of sibling/parent element. Detailed description

Events

Namedescription
toggled(open:Boolean)emitted before open and after close

Positioning

There are two ways of positioning. The default is in-place, the other possibility is on body.

  • The in-place positioning can be problematic when you have an overflow:hidden combined with a position:absolute|relative|fixed element in the parent chain and the tooltip is overflowing.
  • the body positioning can be problematic when the parent is moving relative to body or when you depend on inheritance of styles.

Themes

<button class=btn>hover or touch-hold</button>
<ceri-tooltip class=materialize>Information</ceri-tooltip>

Custom animation

  • read the documentation of the animate mixin.
  • read and understand the default enter and leave animation in src/tooltip.coffee
  • you can provide a custom animation like this:
# application wide
CETT = require("ceri-tooltip")
CETT.prototype.enter = (o) -> # your new enter animation
CETT.prototype.leave = (o) -> # your new leave animation
window.customElements.define("ceri-tooltip", CETT)

# single instance
# get a ref to your instance of ceri-tooltip somehow
# then overwrite the animations directly
ceTT.enter = (o) -> # your new enter animation
ceTT.leave = (o) -> # your new leave animation

Development

Clone repository.

npm install
npm run dev

Browse to http://localhost:8080/.

Notable changes

0.2.0

  • use ceri-materialize@2

License

Copyright (c) 2016 Paul Pflugradt Licensed under the MIT license.

Keywords

tooltip

FAQs

Package last updated on 07 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts