
com.googlecode.mgwt.ui.client.widget.animation.bundle.slide.css Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mgwt Show documentation
Show all versions of mgwt Show documentation
using gwt to write mobile (native) apps
The newest version!
.in, .out {
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-duration: 300ms;
-webkit-animation-fill-mode: both;
}
.in {
z-index:10;
}
.out{
z-index: 0 !important;
}
.in {
-webkit-animation-name: slideinfromright;
}
.out {
-webkit-animation-name: slideouttoleft;
}
.in.reverse {
-webkit-animation-name: slideinfromleft;
}
.out.reverse {
-webkit-animation-name: slideouttoright;
}
@-webkit-keyframes slideinfromright {
from { -webkit-transform: translateX(100%); }
to { -webkit-transform: translateX(0); }
}
@-webkit-keyframes slideinfromleft {
from { -webkit-transform: translateX(-100%); }
to { -webkit-transform: translateX(0); }
}
@-webkit-keyframes slideouttoleft {
from { -webkit-transform: translateX(0); }
to { -webkit-transform: translateX(-100%); }
}
@-webkit-keyframes slideouttoright {
from { -webkit-transform: translateX(0); }
to { -webkit-transform: translateX(100%); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy