-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (79 loc) · 3.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html lang="zh">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0" />
<title>微信卡片分享链接在线制作工具</title>
<link href="wx/style.css" rel="stylesheet" />
<link href="wx/preview1.css" rel="stylesheet" />
<link href="wx/preview2.css" rel="stylesheet" />
<link href="wx/preview3.css" rel="stylesheet" />
</head>
<body>
<h1>
微信卡片在线制作工具
</h1>
<div data-v-122ffe82="" class="wx-share">
<div data-v-122ffe82="" id="share" class="itv-flex-v--fs--c content" style="display: none">
<img data-v-122ffe82="" src="wx/zs.png" alt="" class="img--arrow" />
<p data-v-122ffe82="" class="mb32">
点击右上角
<img src="wx/dh.png" />
,分享给好友或微信群
</p>
<input type="submit" onclick="history.back(-1)" class="pxbtn" value="重新制作" />
</div>
<div data-v-122ffe82="" class="content">
<a href="https://check.lzfh.com/" target="_blank">微信QQ域名报毒、被墙、污染、备案批量查询工具</a><br>
<a href="https://www.lzfh.com/AntiSeal.html" target="_blank">网站被微信QQ360拦截可使用域名防红解决</a>
</div>
<div data-v-122ffe82="" class="content">
<form id="sub" method="get" accept-charset="UTF-8">
<p>
卡片标题:
<input type="text" class="px" name="title" placeholder="例:邀请你访问百度" required />
</p>
<p>
卡片简介:
<input type="text" class="px" name="desc" placeholder="可留空" />
</p>
<p>
卡片链接:
<input type="text" class="px" name="link" placeholder="输入域名或链接地址" required />
</p>
<p>
卡片图片:
<input type="text" class="px" name="img" placeholder="图片的链接地址,可留空" />
</p>
<input type="submit" class="pxbtn" value="制作">
</form>
</div>
</div>
<p class="text-inline" style="text-align: center;">
仅支持在<a href="https://www.lanzoui.com/b00dd197e" target="_blank">微信电脑版v3.4.0.50</a>或以下中使用
</p>
<script src="wx/jweixin-1.2.0.js"></script>
<script src="wx/wxshare.js"></script>
<script>
wx.config({
debug: false,
jsApiList: ["checkJsApi", "onMenuShareTimeline", "onMenuShareAppMessage", "onMenuShareQQ", "onMenuShareWeibo", ],
});
var wstitle = Query("title");
var wsdesc = Query("desc");
var wslink = Query("link");
var qqlink = Query("link");
var wsimg = Query("img");
if ((wstitle != "") & (wslink != "")) {
document.getElementById("share").style.display = "";
document.getElementById("sub").style.display = "none"
}
function Query(name = null) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return decodeURIComponent(r[2]);
return ""
}
</script>
</body>
</html>