Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <head>
  3. <meta charset="utf-8">
  4. <title>reefun threejs demo</title>
  5. <style>
  6. body{
  7. margin: 0;
  8. cursor: pointer;
  9. }
  10. .mask {
  11. position: fixed;
  12. background-color: rgba(0, 0, 0, 0.6);
  13. top:0;
  14. left:0;
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .mask h1{
  19. margin-top: 100px;
  20. font-size: 26px;
  21. text-align: center;
  22. line-height: 100px;
  23. color: #ffffff;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="mask" id="mask">
  29. <h1>点击鼠标开始,ESC键退出</h1>
  30. </div>
  31. </body>