dsl.html 706 B

123456789101112131415161718192021222324252627282930313233
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  7. <link href="css/mui.css" rel="stylesheet" />
  8. <script src="js/mui.js"></script>
  9. <script type="text/javascript">
  10. mui.init()
  11. </script>
  12. </head>
  13. <style>
  14. .bg_content {
  15. height: 100vh;
  16. width: 100vw;
  17. background: url('./img/blessing.png');
  18. background-size: cover;
  19. }
  20. .send_btn {
  21. width: 345px;
  22. position: fixed;
  23. bottom: 60px;
  24. }
  25. </style>
  26. <body>
  27. <div class="bg_content">
  28. <img class="send_btn" id="sendBtn" src="./img/send-btn.png" mode="widthFix" />
  29. </div>
  30. </body>
  31. </html>