Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 728 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 728 Bytes

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)');