Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. .cubo {
  2. transform-style: preserve-3d;
  3. perspective: 1px;
  4. position: relative;
  5. left: 50%;
  6. top: 100px;
  7. }
  8. .face {
  9. width: 100px;
  10. height: 100px;
  11. position: absolute;
  12. border: 1px solid;
  13. }
  14. #f1 {
  15. background-color: rgba(255,0,0,0.35);
  16. z-index: 3;
  17. }
  18.  
  19. #f2 {
  20. transform: translateZ(50px);
  21. background-color: #B00;
  22. background-color: rgba(0,0,255,0.35);}
  23.  
  24. #f3 {
  25. transform: rotateY(90deg) translateX(50px);
  26. background-color: rgba(0,255,0,0.35);
  27. z-index: 2;
  28. }
  29. /*
  30. #f4 {
  31. transform: rotateX(90deg) translateX(-50px);
  32. background-color: #700;
  33. }
  34. #f5 {
  35. transform: rotateX(180deg) translateZ(-50px);
  36. background-color: #500;
  37. }
  38. #f6 {
  39. transform: rotateX(180deg) translateZ(-50px);
  40. background-color: #300;
  41. }
  42.  
  43. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement