Guest User

Untitled

a guest
Dec 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. .face{
  2. display: block;
  3. width: 200px;
  4. height: 200px;
  5. position: absolute;
  6. top: 0;
  7. left: 0;
  8. }
  9.  
  10. .frente {
  11. transform: translateZ(100px);
  12. background-color: yellow;
  13.  
  14. }
  15. .direita {
  16. background-color: black;
  17. transform: translateX(100px) rotateY(90deg);
  18. }
  19. .esquerda {
  20. background-color: green;
  21. transform: translateX(-100px) rotateY(-90deg);
  22. }
  23. .cima {
  24. background-color: red;
  25. transform: translateY(-100px) rotateX(-90deg);
  26. }
  27. .baixo {
  28. background-color: blue;
  29. transform: translateY(100px) rotateX(90deg);
  30. }
  31. .atras {
  32. background-color: gray;
  33. transform: translateZ(-100px) rotateY(180deg) ;
  34. }
  35.  
  36. .cubo{
  37. transform-style: preserve-3d;
  38. width: 200px;
  39. height: 200px;
  40. position: relative;
  41. top: 100px;
  42. left: 100px;
  43. transform: rotateX(10deg) rotateY(10deg);
  44. }
Add Comment
Please, Sign In to add comment