-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
58 lines (46 loc) · 1.54 KB
/
demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>demo</title>
</head>
<body>
</body>
<script src="./jquery-1.10.2.min.js?v=3"></script>
<script src="./fly_barrage.min.js?v=3"></script>
<script>
// top: '0',
// left: '0',
// right: '0',
// bottom: '0',
// width: '100%',
// height: '50%',
// background:'rgba(0,0,0,0.5)',
// data:['111','33333'],//type == data 必须 json 数据格式['a','b']
// paddingNumber: 30,//弹幕上下边距距离
// sleep:20,//弹幕速度系数 越大越慢
// pattern:'random',//弹幕模式 random 随机 sequence 队列模式
// sequenceSpaceTime:4000,// sequence 队列模式 每个弹幕之前间隙时间 决定了两个弹幕距离不重复
// tops:[{'top':1}, {'top':36}, {'top':71}, {'top':106}],//sequence 队列模式 设置 每列的top
// loopNumber:false//是否循环弹幕,默认关闭,设置数组为循环弹幕数量
var comm = $('body').flyBarrage({
height: '350px',
background: 'rgba(0,0,0,0.5)',
type: 'data',
loopNumber: false,
pattern:'random',//弹幕模式 random 随机 sequence 队列模式
});
$(function () {
setInterval(function () {
comm._flyEchoBarrage(["ccccc"]);
},3000);
});
// var model = new FlyBarrage($('body'),{
// height: '350px',
// background: 'rgba(0,0,0,0.5)',
// type: 'data'
//
// });
// model._flyEchoBarrage(["ccccc"]);
</script>
</html>