-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (31 loc) · 950 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 lang="zh-CN">
<head>
<meta charset="UTF-8" />
<script type="text/javascript" src="bubble.source.js"></script>
<script type="text/javascript">
window.addEventListener && window.addEventListener('load', function (ev) {
new Bubble().init({
wait : 3000,
radius : 70,
speed: 6,
avatar : [
{
src : 'http://www.gravatar.com/avatar/e41d06048fe9d04f0811c966842abcd6?s=140',
url : 'http://wange.im',
name : '万戈'
},
{
src: 'http://www.google.com.hk/images/srpr/logo4w.png',
url: '',
name: ''
}
]
});
});
</script>
<title>Bubble</title>
</head>
<body>
</body>
</html>