高级弹幕×宅舞新尝试!

花了大概三天的时间把 @黑白KUMA酱 @腰折的小饼 的宅舞新作http://www.bilibili.tv/video/av490339/ 加入了高级弹幕特效,从中文翻译歌词到视频特效,让宅舞更添色彩! 宽屏播放推奖!!!

全部高级弹幕代码如下!中文歌词见这里

/*☆◎ 魔 法 阵 爆 炸 ◎☆*/

function createHollowCircle(g,x,y,r,mr){

g.graphics.drawCircle(x,y,r);

g.graphics.drawCircle(x,y,mr);

}

function drawStar(g, x, y, innerRadius, outerRadius, points, angle ){

var drawStar_count=Math.abs(points);

if (drawStar_count>=2){

var step=(Math.PI*2)/points;

var halfStep=step/2;

var start=(angle/180)*Math.PI;

g.graphics.moveTo(x+(Math.cos(start)*outerRadius),y-(Math.sin(start)*outerRadius));

for (var i=1;i<=drawStar_count*2;i++){

var radius = (i%2==0 ? outerRadius : innerRadius);

g.graphics.lineTo(x+(Math.cos(start+(halfStep*i))*radius),y-(Math.sin(start+(halfStep*i))*radius));

}

}

}

var i=0;

for(i=1;i<40;i++){ clear; var randangle=(Math.random()*2)*Math.PI; var randlongway=400+Math.random()*800; var bb = $.createShape({ lifeTime: 0.7+Math.random()*1, motionGroup:[{ x:{ fromValue:Player.videoWidth/2, toValue:Player.videoWidth/2+Math.cos(randangle)*randlongway }, y:{ fromValue:Player.videoHeight/2, toValue:Player.videoHeight/2+Math.sin(randangle)*randlongway }, alpha:{ fromValue:Math.random()*0.7, toValue:Math.random()*0.2, easing:"Back" } }] }); bb.graphics.beginFill(Math.random()>0.5?"0xFFF000":"0xFFFFF1");

/*bb.graphics.drawCircle(0,0,5+Math.random()*5); */

createHollowCircle(bb,0,0,5+Math.random()*5,Math.random()*5);

bb.graphics.endFill();

}

var r=0;

var turn=1;

interval(function(){

turn+=1;

/*r=turn*turn/10*20;*/

r=-0.5*turn*turn+20*turn;

}, 50, 20);

interval(function() {

clear;

var clr = $.createShape({

x : Player.videoWidth/2,

y : Player.videoHeight/2,

lifeTime : 0.05,

alpha: 0.7*(25-turn)/25

});

clr.graphics.beginFill(Math.random()>0.3?"0xFF6666":"0xFEFEFE");

createHollowCircle(clr,0,0,r*2+40,r*2+20);

clr.graphics.endFill();

}, 50, 20);

interval(function() {

clear;

var str = $.createShape({

x : Player.videoWidth/2,

y : Player.videoHeight/2,

lifeTime : 0.05,

alpha: 0.7*(25-turn)/25

});

str.graphics.beginFill(Math.random()>0.5?"0xFFF000":"0xFFFFF1");

drawStar(str,0,0,r+20,(r+20)*2,5,r*0.5);

drawStar(str,0,0,r,r*2,5,r*0.5);

str.graphics.endFill();

}, 50, 20);

/* 介 绍 */

function createTriangle(g,width,height){

/*g.graphics.moveTo(0,0);

g.graphics.lineTo(width/2,0);

g.graphics.lineTo(0,height);

g.graphics.lineTo(-width/2,0);

g.graphics.lineTo(0,0);*/

g.graphics.moveTo(width/2,0);

g.graphics.lineTo(0,height);

g.graphics.lineTo(-width/2,0);

}

var triang_bing = $.createShape({

x: Player.videoWidth*0.32,

y: Player.videoHeight*0.20,

lifeTime: 4,

motionGroup:[{

rotationY:{

fromValue:0,toValue:1800

},

alpha:{

fromValue:0.9,toValue:0.3,startDelay:3000,lifeTime:1

}

}]

});

triang_bing.graphics.beginFill("0xC8CFB3");

createTriangle(triang_bing,10,20);

triang_bing.graphics.endFill();

triang_bing.graphics.lineStyle(0.5, "0x8F604F", 0.9, true, "normal","round", "miter", 10);

createTriangle(triang_bing,10,20);

var text_bing = $.createComment("小饼",{

x: Player.videoWidth*0.28,

y: Player.videoHeight*0.12,

lifeTime: 4,

motionGroup:[{

alpha:{

fromValue:0.9,toValue:0.3,startDelay:3000,lifeTime:1

}

}]

});

text_bing.fontsize=18;

text_bing.border=false;

var triang_kuma = $.createShape({

x: Player.videoWidth*0.69,

y: Player.videoHeight*0.20,

lifeTime: 4,

motionGroup:[{

rotationY:{

fromValue:0,toValue:1800

},

alpha:{

fromValue:0.9,toValue:0.3,startDelay:3000,lifeTime:1

}

}]

});

triang_kuma.graphics.beginFill("0xB77B65");

createTriangle(triang_kuma,10,20);

triang_kuma.graphics.endFill();

triang_kuma.graphics.lineStyle(0.5, "0x231C24", 0.9, true, "normal","round", "miter", 10);

createTriangle(triang_kuma,10,20);

var text_kuma = $.createComment("KUMA酱",{

x: Player.videoWidth*0.63,

y: Player.videoHeight*0.12,

lifeTime: 4,

motionGroup:[{

alpha:{

fromValue:0.9,toValue:0.3,startDelay:3000,lifeTime:1

}

}]

});

text_kuma.fontsize=18;

text_kuma.border=false;

/* 圆 雪 片 */

function creatLeafParticle(){

var lfprt = $.createShape({

x:Player.videoWidth*Math.random(),

y:0,

lifeTime: 3+Math.random()*5,

motionGroup:[{

y:{

fromValue:Player.videoHeight*Math.random()*0.2,

toValue:Player.videoHeight*(0.3+Math.random()*0.7),

easing:"Circular"

},

alpha:{

fromValue:0.7*Math.random(),

toValue:0,

startDelay:3+Math.random()*2

},

rotationX:{

fromValue:0,

toValue:180+Math.random()*540

},

rotationY:{

fromValue:0,

toValue:180+Math.random()*540

},

rotationZ:{

fromValue:0,

toValue:180+Math.random()*540

}

}]

});

lfprt.graphics.beginGradientFill("linear", [0xFFFFFF, 0xFF6666],[1,0.3],[0,255] , $.createGradientBox(10,10,Math.PI/2,0,0));

lfprt.graphics.drawCircle(0,0,0.5+Math.random()*3);

lfprt.graphics.endFill();

}

interval(function() {

clear;

for(i=1;i<40;i++){ creatLeafParticle(); } }, 500, 25); /* 间 奏 进 行 中 */ function drawNote1(drwNt1,w,h){ var sclw=w/300; var sclh=h/350; drwNt1.graphics.moveTo(-60*sclw,-151*sclh); drwNt1.graphics.lineTo (-60*sclw,97*sclh); drwNt1.graphics.curveTo(-102*sclw,88*sclh,-139*sclw,136*sclh); drwNt1.graphics.curveTo(-163*sclw,182*sclh,-130*sclw,196*sclh); drwNt1.graphics.curveTo(-98*sclw,200*sclh, -72*sclw,177*sclh); drwNt1.graphics.curveTo(-41*sclw,153*sclh,-48*sclw,100*sclh); drwNt1.graphics.lineTo(-48*sclw,53*sclh); drwNt1.graphics.lineTo(-48*sclw,-122*sclh); drwNt1.graphics.lineTo (129*sclw,-122*sclh); drwNt1.graphics.lineTo(129*sclw,97*sclh); drwNt1.graphics.curveTo(85*sclw,89*sclh,49*sclw,136*sclh); drwNt1.graphics.curveTo(25*sclw,181*sclh,58*sclw,196*sclh); drwNt1.graphics.curveTo(90*sclw,200*sclh,116*sclw,177*sclh); drwNt1.graphics.curveTo(146*sclw,153*sclh,141*sclw,100*sclh); drwNt1.graphics.lineTo(140*sclw,53*sclh); drwNt1.graphics.lineTo (140*sclw,-151*sclh); drwNt1.graphics.lineTo(-60*sclw,-151*sclh); } function drawNote2(drwNt2,w,h){ var sclw=w/200; var sclh=h/350; drwNt2.graphics.moveTo(sclw*-0,sclh*-150); drwNt2.graphics.lineTo (sclw*-0,sclh*100); drwNt2.graphics.curveTo(sclw*-45,sclh*90,sclw*-83,sclh*140); drwNt2.graphics.curveTo(sclw*-108,sclh*188,sclw*-74,sclh*203); drwNt2.graphics.curveTo(sclw*-40,sclh*207,sclw*-13, sclh*183); drwNt2.graphics.curveTo(sclw*19,sclh*158,sclw*10,sclh*102); drwNt2.graphics.lineTo(sclw*10,sclh*100); drwNt2.graphics.lineTo(sclw*10,sclh*-90); drwNt2.graphics.curveTo(sclw*102,sclh*19, sclw*64,sclh*95); drwNt2.graphics.curveTo(sclw*125,sclh*3,sclw*53,sclh*-81); drwNt2.graphics.curveTo(sclw*20,sclh*-116,sclw*10,sclh*-150); drwNt2.graphics.lineTo(sclw*-0,sclh*-150); } function creatNoteflow(){ var sx=Math.random()>0.5?10*Math.random():Player.videoWidth-10*Math.random();

var noteflow= $.createShape({

y:sx>100?10*Math.random()+20:Player.videoHeight-20*Math.random(),

lifeTime:1+1.5*Math.random(),

motionGroup:[{

x:{

fromValue:sx,

toValue:sx>100?0:Player.videoWidth

},

alpha:{

fromValue:0.7+0.3*Math.random(),

toValue:Math.random()*0.3,

startDelay:1

},

rotationY:{

fromValue:0,

toValue:180+Math.random()*540,

repeat:1+Math.random()*3,

lifeTime:0.7

}

}]

});

noteflow.graphics.beginFill(0xFFFFFF*Math.random());

Math.random()>0.5?drawNote1(noteflow,20+15*Math.random(),25+15*Math.random()):drawNote2(noteflow,20+5*Math.random(),25+15*Math.random());

noteflow.graphics.endFill();

}

interval(function() {

clear;

for(i=1;i<6;i++){

creatNoteflow();

}

}, 160, 110);

var bgmwd=$.createComment("间奏进行中...",{

x:Player.videoWidth-160,

y:Player.videoHeight-40,

fontsize:23,

lifeTime:20,

motion:{

alpha:{

fromValue:0.9,

toValue:0.3,

repeat:30,

lifeTime:0.652

}

}

});

bgmwd.font="楷体";

bgmwd.bold=true;

var sndnote1 = $.createShape({

x:Player.videoWidth-150,

y:Player.videoHeight-40,

lifeTime: 22,

alpha:0.3,

motionGroup:[{

x:{

fromValue:Player.videoWidth-150,

toValue:Player.videoWidth-20

},

rotationZ:{

fromValue:0,

toValue:360,

lifeTime:1.4,

repeat:15

},

alpha:{

fromValue:0.3,

toValue:0,

stratDelay:21

}

}]

});

sndnote1.graphics.beginFill("0xFFFFFF");

drawNote1(sndnote1,60,70);

sndnote1.graphics.endFill();

var sndnote2 = $.createShape({

x:Player.videoWidth-125,

y:Player.videoHeight-55,

lifeTime: 22,

alpha:0.5,

motionGroup:[{

x:{

fromValue:Player.videoWidth-150,

toValue:Player.videoWidth-10,

easing:"Exponential"

},

rotationZ:{

fromValue:0,

toValue:720,

lifeTime:1.4,

repeat:15

},

alpha:{

fromValue:0.2,

toValue:0,

stratDelay:21

}

}]

});

sndnote2.graphics.beginFill("0xFFFFFF");

drawNote2(sndnote2,35,60);

sndnote2.graphics.endFill();

var sndnote3 = $.createShape({

x:Player.videoWidth-175,

y:Player.videoHeight-30,

lifeTime: 22,

alpha:0.4,

motionGroup:[{

x:{

fromValue:Player.videoWidth-150,

toValue:Player.videoWidth-35,

easing:"Quadratic"

},

rotationZ:{

fromValue:0,

toValue:1080,

lifeTime:1.4,

repeat:15

},

alpha:{

fromValue:0.4,

toValue:0,

stratDelay:21

}

}]

});

sndnote3.graphics.beginFill("0xFFFFFF");

drawNote2(sndnote3,20,35);

sndnote3.graphics.endFill();

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,214评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,307评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,543评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,221评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,224评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,007评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,313评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,956评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,441评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,925评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,018评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,685评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,234评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,240评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,464评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,467评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,762评论 2 345

推荐阅读更多精彩内容