ZindaCSS

Transitioning in ZindaCSS

Transitions

Hover over the following example:

Hover over me
The change is sudden and abrupt. This can be changed with the transition class.
Start your class name with 'transition_'
Then add the property to change (such as background-color, color)
Then add the timing
<div class="transition_YourProperty_Time">Test</div>
So, to make the background change (for the above example) over 1.5s, use the following class:
<div class="transition_background-color_1.5s>">Test</div>
The object will now look like this:
Hover over me

This makes the change smooth and steady.