-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQRcode.html
More file actions
49 lines (42 loc) · 1.8 KB
/
Copy pathQRcode.html
File metadata and controls
49 lines (42 loc) · 1.8 KB
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
<html>
<head>
<title>BBDP</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/frame.css">
<script type="text/javascript" src="js/FCMPushHandler.js"></script> <!-- 提醒推播 -->
<script type="text/javascript" src="cordova.js"></script> <!-- Cordova套件 -->
<script>
document.addEventListener("backbutton", onBackKeyDown, false); //偵測事件
function onBackKeyDown() { //返回按鈕
window.history.back(-1);
}
</script>
</head>
<body>
<div class=" text-center title">
<a onclick="window.history.back(-1)"><img src="img/backButton.png" style="float:left;width:10vw;height:10vw;"></a>
<img src="img/qr-code.png" style="vertical-align:middle;width:10vw;height:10vw;">
<h1 style="display: inline;">行動條碼</h1>
<img src="img/background.png" style="float:right;width:10vw;height:10vw;">
</div>
<div style="height:15vw;"></div>
<div class="col-xs-12 col-sm-12">
<!--------------------------------------內容----------------------------------------------->
<center>
<img style="margin-top:25vw;" src="" id="QRCode"/>
<div style="height:6vw;"></div>
<p class="basicText">對方使用BBDP讀取您的行動條碼,<br>即可發送邀請給您。</p>
<div style="height:6vw;"></div>
</center>
<!--------------------------------------內容----------------------------------------------->
</div>
<script type="text/javascript" src="js/QRcode.js"></script> <!-- QRcode.js -->
</body>
</html>