tips.html 806 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>请使用手机浏览器打开</title>
  8. <style>
  9. *{
  10. padding: 0;
  11. margin: 0;
  12. }
  13. .page{
  14. width: 100vw;
  15. height: 100vh;
  16. background: rgba(0,0,0,.6);
  17. position: relative;
  18. }
  19. .page .img{
  20. position: absolute;
  21. top: 10px;
  22. right: 30px;
  23. width: 300px;
  24. height: 300px;
  25. z-index: 10;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="page">
  31. <img src="/assets/img/tips.png" class="img">
  32. </div>
  33. </body>
  34. </html>