stylar

0.2.2 • Public • Published

Stylar

Badass CSS Styling Helpers

Usage

Get the current transform on an element

console.log(stylar(targetElement, 'transform'));

Update the transform of an element:

stylar(targetElement, 'transform', 'translate(50px, 100px)');

Get the current transform of an element using the get helper:

stylar(targetElement).get('transform');

Set the current transform of the element using the set helper (chainable):

stylar(targetElement)
    .set('transform', 'translate(50px, 100px)')
    .set('background-color', 'red');

NOTE: You can also use the set forms to update multiple elements at once:

stylar([element1, element2], 'transform', 'translate(50px, 100px)');

Readme

Keywords

none

Package Sidebar

Install

npm i stylar

Weekly Downloads

58

Version

0.2.2

License

none

Last publish

Collaborators

  • damonoehlman