Skip to content

jacky-yanglei/qiyou_barrage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

一个基于JQ的弹幕插件

使用方法

第一步,创建一个弹幕对象

$('.content') 是弹幕的容器,必须指定高度

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()

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published