Guest User

Untitled

a guest
Oct 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. body {
  2. font-size: 0;
  3. }
  4. .flip {
  5. display: inline-block;
  6. margin: 5px;
  7. position: relative;
  8. width: 40px;
  9. -webkit-perspective: 100;
  10. }
  11. .faces {
  12. height: 100%;
  13. position: relative;
  14. -webkit-transform-style: flat;
  15. -webkit-transition: .25s 1s ease-in-out;
  16. }
  17. .faces div {
  18. height: 30px;
  19. -webkit-backface-visibility: hidden;
  20. }
  21. .front {
  22. background: #f66;
  23. }
  24. .back {
  25. background: #6cf;
  26. bottom: 0;
  27. left: 0;
  28. position: absolute;
  29. right: 0;
  30. top: 0;
  31. -webkit-transform: rotateY(-180deg);
  32. }
  33. .flip:hover .faces {
  34. -webkit-transform: rotateY(-180deg);
  35. -webkit-transition: 0s ease-in-out;
  36. }
Add Comment
Please, Sign In to add comment