-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (120 loc) · 4.16 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://lib.sinaapp.com/js/jquery/2.0.2/jquery-2.0.2.min.js"></script>
<script type="text/javascript" src="js/jquery.qrcode.min.js"></script>
<style>
body {
background-color: #eee;
margin: 0;
padding: 0;
}
.header {
position: relative;
height: 42px;
line-height: 42px;
padding: 0 15px;
border-bottom: 1px solid #f6f6f6;
background-color: #1E9FFF;
color: #fff;
border-radius: 2px 2px 0 0;
font-size: 14px;
}
.body {
position: relative;
padding: 10px 15px;
line-height: 24px;
background-color: #fff;
}
.card {
margin: 20% auto;
}
</style>
<title>三合一聚合扫码支付 自动识别 微信 支付宝 QQ</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-4 text-center">
<div class="card">
<div class="header">三合一聚合扫码支付</div>
<div class="body">
<div id="wan_Neng" ></div>
</div>
</div>
</div>
<div class="col-md-4">
</div>
</div>
</div>
<div id="code"></div>
</body>
</html>
<script>
/*****************************************
* 小九实验室
* www.79xj.cn
* 聚合扫码支付
* (本地测试不行(本地不是云端) 必须需要主机挂在服务器上)
* 无需对接任何api 纯js完成
****************************************/
$(function () {
var Ma = {
qq: "https://i.qianbao.qq.com/wallet/sqrcode.htm?m=tenpay&f=wallet&a=1&ac=CAEQppnj0gQYoZWM8AU%3D_xxx_sign&u=1247333542&n=%E5%B0%B9%E6%B7%B1.%4079xj.cn",
zfb: "https://qr.alipay.com/fkx02332q5utit6xpijbw15",
wx: "wxp://f2f0NvNV3nhhGCmrMcFw5N353I8nIDFD_lhA",
testma: "https://www.kuaizhan.com/common/encode-png?large=true&data="
}
if(navigator.userAgent.match(/Alipay/i)) {
// 支付宝
window.location.href=Ma.zfb
} else if(navigator.userAgent.match(/MicroMessenger\//i)) {
// 微信
$('#wan_Neng').qrcode(Ma.wx)
$(".header").html("请使用微信扫码支付")
} else if(navigator.userAgent.match(/QQ\//i)) {
// QQ
$('#wan_Neng').qrcode(Ma.qq)
$(".header").html("请使用QQ扫码支付")
} else {
// 其它
$url = window.location.href
// $("#wan_Neng").attr("src", Ma.testma +$url)
$('#wan_Neng').html("请使用微信QQ支付宝打开支付")
}
//获取网页中的canvas对象
var mycans=$('canvas')[0];
var img=img_can(mycans);
$('#wan_Neng').append(img);
$('canvas')[0].remove()
})
//禁用右击
document.oncontextmenu = function () {
return false;
}
//禁用f12
document.onkeydown = function () {
if (window.event && window.event.keyCode == 123) {
window.event.returnValue = false;
}
}
/*****************************************
* 画布转img
* 输入参数:画布对象
* 输出参数:img
****************************************/
function img_can(canvas) {
var image = new Image();
image.src = canvas.toDataURL("image/png");
return image;
}
</script>