wxcarddomain 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ mcBV8vqoMApmYJGB
package/package.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "wxcarddomain",
3
+ "version": "1.0.0",
4
+ "description": "My package description",
5
+ "main": "index.html"
6
+ }
@@ -0,0 +1,162 @@
1
+ <!doctype html>
2
+ <html lang="zh">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>二维码详情</title>
6
+ <link rel="icon" href="data:,">
7
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8
+ <meta name="renderer" content="webkit|ie-comp|ie-stand">
9
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
10
+ <meta name="apple-mobile-web-app-capable" content="yes">
11
+ <meta name="format-detection" content="telephone=no">
12
+ <style type="text/css">
13
+ body,html{
14
+ background-color: #f8f8f8;
15
+ padding: 0px;
16
+ margin: 0px;
17
+ width: 100%;
18
+ height: 100%;
19
+ color: #484848;
20
+ }
21
+ .content{
22
+ width: 100%;
23
+ height: 100%;
24
+ max-width: 500px;
25
+ margin: 0px auto;
26
+ display: flex;
27
+ align-items: center;
28
+ }
29
+ .content-article{
30
+ width: 90%;
31
+ height: auto;
32
+ float: left;
33
+ margin: 0 5%;
34
+ background-color: #FFFFFF;
35
+ border-radius: 10px;
36
+ padding: 18px;
37
+ box-sizing: border-box;
38
+ display: none;
39
+ }
40
+ .content-article-full{
41
+ width: 100%;
42
+ height: auto;
43
+ float: left;
44
+ background-color: #FFFFFF;
45
+ display: none;
46
+ }
47
+ .content-article-full img{
48
+ width: 100%;
49
+ height: auto;
50
+ float: left;
51
+ background-color: #FFFFFF;
52
+ }
53
+ .content-article-header{
54
+ width: 100%;
55
+ height: 60px;
56
+ }
57
+ .content-article-header img{
58
+ width: 60px;
59
+ height: 60px;
60
+ float: left;
61
+ border-radius: 5px;
62
+ }
63
+ .content-article-header-right{
64
+ width: 100%;
65
+ height: 60px;
66
+ box-sizing: border-box;
67
+ margin-top: -60px;
68
+ float: left;
69
+ padding: 5px 0 5px 70px;
70
+ }
71
+ .content-article-header-right h3{
72
+ width: 100%;
73
+ height: 30px;
74
+ line-height: 30px;
75
+ font-size: 1.1rem;
76
+ float: left;
77
+ margin: 0px;
78
+ padding: 0px;
79
+ font-weight: 500;
80
+ overflow: hidden;
81
+ text-overflow:ellipsis;
82
+ white-space: nowrap;
83
+ }
84
+ .content-article-header-right h5{
85
+ width: 100%;
86
+ height: 20px;
87
+ line-height: 20px;
88
+ font-size: 1rem;
89
+ float: left;
90
+ margin: 0px;
91
+ padding: 0px;
92
+ color: #999998;
93
+ font-weight: 400;
94
+ overflow: hidden;
95
+ text-overflow:ellipsis;
96
+ white-space: nowrap;
97
+ }
98
+ .content-article-qrcode{
99
+ width: 100%;
100
+ float: left;
101
+ margin: 20px 0px;
102
+ }
103
+ .content-article-footer{
104
+ width: 100%;
105
+ float: left;
106
+ text-align: center;
107
+ font-size: 1rem;
108
+ font-weight: 300;
109
+ height: 20px;
110
+ line-height: 20px;
111
+ color: #666666;
112
+ }
113
+ .public-container{
114
+ width: 100%;
115
+ float: left;
116
+ text-align: center;
117
+ display: none;
118
+ }
119
+ .error-images{
120
+ width: 80px;
121
+ height: 80px;
122
+ margin: 50px auto 10px auto;
123
+ }
124
+ .error-msg{
125
+ width: 100%;
126
+ float: left;
127
+ line-height: 30px;
128
+ text-align: center;
129
+ padding: 0px 15px;
130
+ box-sizing: border-box;
131
+ color: #666666;
132
+ font-size: 15px;
133
+ }
134
+ </style>
135
+ <script src="https://file.wailian2.cn/assets/js/v2/jquery-3.5.1-min.js?v=2023070601"></script>
136
+ <script src="https://file.wailian2.cn/assets/js/libs/cryptojs/md5.js?v=2023122201"></script>
137
+ <script src="https://file.wailian2.cn/assets/js/libs/cryptojs/aes.js?v=2023122201"></script>
138
+ <link rel="stylesheet" type="text/css" href="https://res.wx.qq.com/open/libs/weui/2.4.0/weui.min.css?v=202207071010">
139
+ </head>
140
+ <body>
141
+ <div id="article_error" class="public-container"></div>
142
+ <div class="content">
143
+ <div class="content-article">
144
+ <div class="content-article-header">
145
+ <img src="" id="content-article-header-img">
146
+ <div class="content-article-header-right">
147
+ <h3></h3>
148
+ <h5></h5>
149
+ </div>
150
+ </div>
151
+ <img class="content-article-qrcode" src="" id="qrcode">
152
+ <div class="content-article-footer">
153
+ 长按识别上方二维码加我微信
154
+ </div>
155
+ </div>
156
+ <div class="content-article-full">
157
+ <img id="full_qrcode" src="">
158
+ </div>
159
+ </div>
160
+ <script src="//wailiancn.oss-cn-beijing.aliyuncs.com/js/wl/wailian-wxqrcode.min.js?v=20240926"></script>
161
+ </body>
162
+ </html>