Hi everybody,
In my app i need to destroy the container after the animation is done.
I do the animation with CSS3 transforms so it is not traceable, so i thought about a timer or a delay option for the destroy function?
Thanks for advance.
Printable View
Hi everybody,
In my app i need to destroy the container after the animation is done.
I do the animation with CSS3 transforms so it is not traceable, so i thought about a timer or a delay option for the destroy function?
Thanks for advance.
What animation? The element will fire an event when animation has finished.
thanks for reply
i do the animation with add class with the new attributes
Code:.x-layout-fit-item.x-sized.coverView
{
width:100%;
height:100%;
background-image:url(../images/main.jpg);
-webkit-transform: rotateY(0deg);
-webkit-transition: all 1.5s ease-in-out;
-webkit-transform-origin: left center;
z-index:3;
}
.x-layout-fit-item.x-sized.coverFlip
{
-webkit-transform: rotateY(-90deg);
}