All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.mgwt.ui.client.widget.animation.bundle.dissolve.css Maven / Gradle / Ivy

The newest version!
.in, .out {
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
}

.in {
  -webkit-animation-name: appear;
}

.out {
  -webkit-animation-name: dissolve;
}

.in.reverse {
  -webkit-animation-name: appear;
}

.out.reverse {
  -webkit-animation-name: dissolve;
}

@-webkit-keyframes dissolve {
  from { opacity: 1; }
  to { opacity: 0; }
}

@-webkit-keyframes appear {
  from { opacity: 0; }
  to { opacity: 1; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy