0.2.2 • Published 12 years ago
stylar v0.2.2
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)');