forked from smartnlp/web-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1020 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width; initial-scale=1.0; minimum-scale=1.0; maximum-scale=1.0; user-scalable=no"/>
<meta name="author" content="">
<meta name="description" content=""/>
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="white" />
<title>机器人对话框</title>
<link rel="stylesheet" href="robot/css/robot.css"/>
</head>
<body>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.0.min.js "></script>
<script src="robot/robot.js"></script>
<script>
new Robot({
mod: 'mini'
, showside: false
, appid: '55d28d61d3a93df500131c24'
, colors: {
header: '#f50'
, border: '#f50'
, button: '#c00'
}
, newurl: 'service.html' //新窗口打开的的URL[仅mini模式下有效]
});
</script>
</body>
</html>