1.0.7 • Published 7 years ago

tipsy-sass v1.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Tipsy.sass

A mixin tooltip CSS using Sass. It currently support Internet Explorer 9+, Chrome, Firefox, Safari and Opera

Installation

NPM

$ npm install tipsy-sass

Normal

Getting Started

You need import Tipsy.sass in your stylesheet

@import "tipsy";

Tipsy.sass have 5 parameters allow you can customize

SCSS

@mixin tipsy($gravity, $bgcolor, $bordersize, $radius, $width) {...}

SASS

+tipsy($gravity, $bgcolor, $bordersize, $radius, $width)

PARAMETERS

ParamDescriptionValue
$gravityPosition of tooltipnwnneesessww
$bgcolorBackground color of tooltipHEX, RGB, RGBA, HSL
$bordersizeArrow size of tooltippx, em, rem
$radiusBorder radius of tooltippx, em, rem
$widthWidth of tooltippx, em, rem

How to use

HTML

<span class="tipsy" data-tipsy="Simple Tipsy">Simple Tipsy</span>

SCSS

.tipsy--nw { @include tipsy(nw, #34495e, 5px, 0);  }
.tipsy--n  { @include tipsy(n, #2ecc71, 5px, 3px); }
.tipsy--ne { @include tipsy(ne, #3498db, 5px, 0);  }
.tipsy--e  { @include tipsy(e, #9b59b6, 5px, 3px); }
.tipsy--se { @include tipsy(se, #f39c12, 5px, 0);  }
.tipsy--s  { @include tipsy(s, #d35400, 5px, 3px); }
.tipsy--sw { @include tipsy(sw, #c0392b, 5px, 0);  }
.tipsy--w  { @include tipsy(w, #8e44ad, 5px, 3px, 10px); }