Merge pull request #98 from guokeke/fix-item-border

Add border option to danmaku param, fix #97
This commit is contained in:
DIYgod 2017-07-02 15:26:36 +08:00 committed by GitHub
commit 4a96aab3f7
1 changed files with 5 additions and 4 deletions

View File

@ -376,7 +376,7 @@ class DPlayer {
this.danIndex = this.dan.length;
}
if (!this.paused) {
this.setTime('danmaku');
this.setTime('danmaku');
}
}
}
@ -536,10 +536,10 @@ class DPlayer {
const danmaku = {
text: htmlEncode(danmakuData.text),
color: danmakuData.color,
type: danmakuData.type
type: danmakuData.type,
border: `2px solid ${this.option.theme}`
};
const item = this.pushDanmaku(danmaku);
item.style.border = `2px solid ${this.option.theme}`;
this.pushDanmaku(danmaku);
};
const closeCommentSetting = () => {
@ -1004,6 +1004,7 @@ class DPlayer {
item.innerHTML = danmaku[i].text;
item.style.opacity = this.danOpacity;
item.style.color = danmaku[i].color;
item.style.border = danmaku[i].border;
item.addEventListener('animationend', () => {
danContainer.removeChild(item);
});