purgetss
Version:
A package that simplifies mobile app creation for Titanium developers.
7 lines • 394 B
Markdown
```css
// Property(ies): toggle - For the Animation module
// Component(s): Animation
'.opacity-to-0': { opacity: 1, animationProperties: { open: { opacity: 0 }, close: { opacity: 1 } } }
'.opacity-to-100': { opacity: 0, animationProperties: { open: { opacity: 1 }, close: { opacity: 0 } } }
'.toggle-visible': { animationProperties: { open: { visible: true }, close: { visible: false } } }
```