12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //发送弹幕
- var Barrage = function()
- {
- this.sendData = null;
- this.barrage_html = '';
- this.dataParse = function(data)
- {
- return {
- posY :parseInt(Math.random() * (100 - 20)),
- avatar: data.avatar,
- nickname : data.nickname,
- msg:data.msg
- }
- };
- this.add = function(send_data){
- this.sendData = this.dataParse(send_data);
- return this;
- };
- this.send = function()
- {
- if(this.sendData)
- {
- if(this.sendData.msg != null) {
- this.barrage_html = '<div class="barrage" style="position:absolute;top:'+this.sendData.posY+'%"><img src="'+this.sendData.avatar+'">'+this.sendData.nickname+'说:<span class="price">'+this.sendData.msg+'</span></div>';
- }
- $('body').append(this.barrage_html);
- this.sendData = null;
- this.barrage_html = '';
- this.clear();
- return this;
- }
- else {
- console.log('没有弹幕可以发送');
- }
- };
- this.clear = function()
- {
- $('.barrage').on('webkitAnimationEnd',function(){
- $(this).remove();
- });
- return this;
- };
- };
|