https://cssanimate.com
.et_pb_slider.et_pb_module .et_pb_slides .et_pb_slide_content {
animation: animationFrames ease 2s;
animation-iteration-count: 1;
transform-origin: 50% 50%;
animation-fill-mode:forwards;
-webkit-animation: animationFrames ease 2s;
-webkit-animation-iteration-count: 1;
-webkit-transform-origin: 50% 50%;
-webkit-animation-fill-mode:forwards;
-moz-animation: animationFrames ease 2s;
-moz-animation-iteration-count: 1;
-moz-transform-origin: 50% 50%;
-moz-animation-fill-mode:forwards;
-o-animation: animationFrames ease 2s;
-o-animation-iteration-count: 1;
-o-transform-origin: 50% 50%;
-o-animation-fill-mode:forwards;
-ms-animation: animationFrames ease 2s;
-ms-animation-iteration-count: 1;
-ms-transform-origin: 50% 50%;
-ms-animation-fill-mode:forwards;
}
@keyframes animationFrames{
0% {
transform: translate(0px,-25px) ;
}
100% {
transform: translate(0px,0px) ;
}
}
@-moz-keyframes animationFrames{
0% {
-moz-transform: translate(0px,-25px) ;
}
100% {
-moz-transform: translate(0px,0px) ;
}
}
@-webkit-keyframes animationFrames {
0% {
-webkit-transform: translate(0px,-25px) ;
}
100% {
-webkit-transform: translate(0px,0px) ;
}
}
@-o-keyframes animationFrames {
0% {
-o-transform: translate(0px,-25px) ;
}
100% {
-o-transform: translate(0px,0px) ;
}
}
@-ms-keyframes animationFrames {
0% {
-ms-transform: translate(0px,-25px) ;
}
100% {
-ms-transform: translate(0px,0px) ;
}
}