12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8"/>
- <meta http-equiv="Content-Type" content="application/xhtml+xml;charset=UTF-8">
- <meta http-equiv="Cache-Control" content="no-cache,no-store,must-revalidate">
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="expires" content="0">
- <title>打印二维码</title>
- <style>
- body, html {
- padding: 0;
- margin: 0;
- }
- /*210×297*/
- .qr-panel {
- width: 21.0cm;
- height: 29.7cm;
- }
- .img-wear {
- padding: 0.5cm;
- width: 3.5cm;
- box-sizing: border-box;
- border-right: 0.1mm dotted #aaa;
- border-bottom: 0.1mm dotted #aaa;
- float: left;
- }
- .qr-panel img {
- width: 2.5cm;
- height: 2.87cm;
- display: block;
- }
- </style>
- </head>
- <body>
- <div class="qr-panel">
- </div>
- </body>
- <script src="https://cdn.washpayer.com/components/lib/jquery.min.js"></script>
- <script>
- var start = 359500
- for (var index = 0; index < 500; index++) {
- var img = $('<div class="img-wear"><img src="/pages/images/逻辑码/' + start + '.jpeg"></div>')
- $('.qr-panel').append(img)
- start++
- }
- </script>
- </html>
|