arrow-style

A simple function generating the styles needed for a DOM arrow

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
arrow-style
1.1.19 years ago9 years agoMinified + gzip package size for arrow-style in KB

Readme

arrow-style
A simple function generating the styles needed for a DOM arrow

Install

$ npm install --save arrow-style

Usage

var arrowStyle = require('arrow-style')

var style = arrowStyle('up', {
    size: 8,
    color: 'red'
})

//style is now an object with the following properties
style = {
    borderLeft: '8px solid transparent',
    borderRight: '8px solid transparent',
    borderBottom: '8px solid red',
}
//styles generated to create a DOM arrow pointing up: