I need to animate a <div>
. Tried using @keyframes and transition.
Here's a code:
TRANSITION
#menu{
...
width:70%;
-webkit-transition: width 5s;
..
}
KEYFRAMES
#menu{
...
width:70%;
animation: menuEffect 3s;
..
}
@keyframes menuEffect
{
from {width:0%;}
to {width:70%;}
}
I'm using cordova/phonegap 2.0.0 and targeting android 4.0 and above. I do not see this working. Does transition and animation not support phonegap? Please assist.
transition: width 5s;
? – Finished