| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <link rel=icon type=image/png sizes=32x32 href='./images/favicon.png' class=keep>
- <link rel="stylesheet" href="./css/reset.css">
- <link rel="stylesheet" href="./css/main.css">
- <title>吴忠博物馆</title>
- </head>
- <style>
- .myTitle {
- letter-spacing:4px;
- margin: 0 auto;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 270px;
- height: 50px;
- background: url('./img/titleBac.png') no-repeat center;
- background-size: 100% 100%;
- }
- .containers {
- padding-top: 40px;
- width: 100vw;
- max-width: 1080px;
- /* height: 100vh; */
- background-color: #285b5e;
- }
- </style>
- <body>
- <div class="containers">
- <div class="myTitle">吴忠博物馆</div>
- <!-- <p class="con-title">吴忠博物馆</p> -->
- <ul class="con">
- <!-- <li>
- <div class="case">
- <a class="link-a" href="Model.html?m=YL01&v=1">
- <div class="card-img" style="background-image: url(images/YL01.jpg)">
- </div>
- </a>
- </div>
- <p>鸡娄鼓</p>
- </li> -->
- </ul>
- </div>
- <script>
- let yp_num = []
- let notIn = []
- for (let i = 0; i < 48; i++) {
- if (!notIn.includes(i+1)) {
- yp_num.push('wzs'+String(i+1).padStart(2,'0'))
- }
- }
- console.log('数组长度:', yp_num.length);
- </script>
- <script src="js/jquery.js"></script>
- <script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
- <!-- <script src="js/weixin.js"></script> -->
- <script src="js/info.js"></script>
- <script src="js/ui.js"></script>
- </body>
- </html>
|