123456789101112131415161718192021222324252627282930313233 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title></title>
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
- <link href="css/mui.css" rel="stylesheet" />
- <script src="js/mui.js"></script>
- <script type="text/javascript">
- mui.init()
- </script>
- </head>
- <style>
- .bg_content {
- height: 100vh;
- width: 100vw;
- background: url('./img/blessing.png');
- background-size: cover;
- }
- .send_btn {
- width: 345px;
- position: fixed;
- bottom: 60px;
- }
- </style>
- <body>
- <div class="bg_content">
- <img class="send_btn" id="sendBtn" src="./img/send-btn.png" mode="widthFix" />
- </div>
- </body>
- </html>
|