sorting-1-ref.html 748 B

123456789101112131415161718192021222324252627282930313233343536
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. #stage {
  5. -moz-perspective: 1000px;
  6. }
  7. #parent {
  8. -moz-transform-style: preserve-3d;
  9. }
  10. #big {
  11. width: 1000px;
  12. height: 1000px;
  13. background-color: #995C7F;
  14. -moz-transform: rotatey(45deg);
  15. }
  16. #small {
  17. width: 100px;
  18. height: 100px;
  19. background-color: #995C7F;
  20. -moz-transform: translate3d(600px, 200px, 0px);
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="stage">
  26. <div id="parent">
  27. <div id="small"></div>
  28. <div id="big"></div>
  29. </div>
  30. </div>
  31. </body>
  32. </html>