var QiYouBarrage = $('.content').QiYouBarrage(
{
colorStyle: [
'#adadad',
'#adadad',
'#adadad',
] // 弹幕字体色色板 只接受数组
}
);
QiYouBarrage.addBarrage({
info: '第一条弹幕', // 弹幕信息
top: parseInt(Math.random()*160), // 弹幕离父元素的高度
stayTime: (parseInt(Math.random()*10 + 5)) // 弹幕在容器中停留的总时间
fontColor: 2, // 弹幕字体颜色 可以直接配置颜色(String形式),也可配置成根据默认色板数组中的数值下标
backgroundColor: 'rgba(255, 255, 255, .5)' // 弹幕的背景色
});
// 发送一条弹幕
清除当前容器中的所有弹幕
QiYouBarrage.removeAll()