1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
- <title>热销榜</title>
- <link rel="stylesheet" type="text/css" href="../common/reset.css"/>
- <link rel="stylesheet" href="./index.css">
- <script src="../common/jquery-2.1.0.js"></script>
- <script type="text/javascript">
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- window.onresize = function(){
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- }
- </script>
- </head>
- <body>
- <ul class="hotList">
- <!-- 热销榜 -->
- </ul>
- <div class="alert-info" style="display: none;">
- <!-- tip提示,3s后消失 -->
- <p></p>
- </div>
- <!-- loading -->
- <div class="loading">
- <img src="../common/loading.gif" />
- </div>
- </body>
- </html>
- <script type="text/javascript" src="./index.js"></script>
|