I successfully animated a side navigation menu to slide in from the left of the screen. The animation is working perfectly, however, I had to set the div's width to 0px
in order for it to appear as though it's sliding in from off-screen.
If I change the div's width to 200px
, it displays on screen at 200px wide before widening to 400px after the animation completes.
How can I keep the div at a fixed width of 200px both during and after the animation?
For a demonstration, please refer to this jfiddle example: http://jsfiddle.net/kYRbJ/1/
Thank you