Guest User

Untitled

a guest
Feb 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. slide {
  2. position: absolute;
  3. left: 0px;
  4. top: 0px;
  5. width: 320px;
  6. }
  7. .slide.zoomOut {
  8. opacity: 1.0;
  9. -webkit-transform: scale(1.0);
  10. -webkit-transform-origin: 50% 50%;
  11. -webkit-transition-property: -webkit-transform, opacity;
  12. -webkit-transition-duration: 10.0s, 2.0s;
  13. -webkit-transition-delay: 3.0s, 0;
  14. }
  15. .slide.zoomIn {
  16. -webkit-transform: scale(4.0);
  17. opacity: 0.0;
  18. }
  19. .slide.current {
  20. z-index: 0;
  21. }
  22. .slide.last {
  23. z-index: -1;
  24. }
  25. .slide.next {
  26. z-index: -2;
Add Comment
Please, Sign In to add comment