-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdemo.html
More file actions
95 lines (87 loc) · 2.66 KB
/
demo.html
File metadata and controls
95 lines (87 loc) · 2.66 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1, user-scalable=no">
<link href="animate.css" rel="stylesheet">
<title></title>
<style>
*{
margin: 0;
padding: 0;
}
.img-style {
width: 100%;
}
.red {
width: 100%;
height: 200px;
background: red;
}
</style>
</head>
<body>
<div>
<p class="red animated slideOutUp"></p>
<button onclick="getDeviceId()">获取deviceID</button>
<button onclick="getNetWorkInfo()">获取ip</button>
<button onclick="getDeviceModel()">获取model</button>
<button onclick="closeInputKeyboard()">关闭键盘</button>
<button onclick="vibrate()">震动</button>
<button onclick="callPhone()">打电话</button>
<button onclick="sendMsg()">发短信</button>
<div id="test1"></div>
</div>
<script>
function getDeviceId() {
jsbridge.device.getDeviceId(function(data){
alert('success:'+JSON.stringify(data));
},function(data){
alert('fail:'+JSON.stringify(data));
});
}
function getNetWorkInfo() {
jsbridge.device.getNetWorkInfo(function(data){
alert('success:'+JSON.stringify(data));
},function(data){
alert('fail:'+JSON.stringify(data));
});
}
function getDeviceModel() {
jsbridge.device.getDeviceModel(function(data){
alert('success:'+JSON.stringify(data));
},function(data){
alert('fail:'+JSON.stringify(data));
});
}
function closeInputKeyboard() {
jsbridge.device.closeInputKeyboard(function(data){
alert('success:'+JSON.stringify(data));
},function(data){
alert('fail:'+JSON.stringify(data));
});
}
function vibrate() {
jsbridge.device.vibrate(function(data){
alert('success:'+JSON.stringify(data));
},function(data){
alert('fail:'+JSON.stringify(data));
});
}
function callPhone() {
jsbridge.device.callPhone('10000',function(data){
alert('success:'+JSON.stringify(data));
},function(data){
alert('fail:'+JSON.stringify(data));
});
}
function sendMsg() {
jsbridge.device.sendMsg('10000',function(data){
alert('success:'+JSON.stringify(data));
},function(data){
alert('fail:'+JSON.stringify(data));
});
}
</script>
</body>
</html>