1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!--
- * @Author: ZhengXiaowei
- * @Date: 2019-08-15 16:39:23
- * @LastEditors: ZhengXiaowei
- * @LastEditTime: 2019-09-03 14:15:51
- * @Description: 弹窗页
- -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
- <link rel="stylesheet" href="https://cdn-novel.iycdm.com/h5/crm_booklist/css/index.css" />
- <title>畅销小说榜</title>
- </head>
- <body>
- <main>
- <img class="month" src="https://cdn-novel.iycdm.com/h5/crm_booklist/images/{{$month}}.png" alt="" />
- <img class="bg" src="https://cdn-novel.iycdm.com/h5/crm_booklist/images/bg.jpg" alt="" />
- <div class="qrcode-wrap">
- <img src="https://cdn-novel.iycdm.com/h5/crm_booklist/images/qrcode.png" alt="" class="qr-code" />
- <p>添加微信阅读管家 连连</p>
- </div>
- </main>
- </body>
- <script>
- var doc = document;
- doc.body.addEventListener(
- "click",
- function() {
- var qrcodeTop = doc.querySelector(".qrcode-wrap");
- window.scrollTo(0, qrcodeTop.offsetTop);
- },
- false
- );
- </script>
- </html>
|