-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathhuomaodanmu.js
64 lines (64 loc) · 2.43 KB
/
huomaodanmu.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
(function() {
'use strict';
var start = setInterval(function(){
if (document.querySelector("#my-comment-stage")){
initApplication()
clearInterval(start)
}
},500)
function initApplication(){
var targetNode = document.getElementById('chat_cont_bx').children[0];
var config = { attributes: false, childList: true, subtree: true };
var callback = function(mutationsList) {
for(var mutation of mutationsList) {
if(mutation.addedNodes[0]){
send(mutation.addedNodes[0].querySelector(".message"));
}
}
};
var observer = new MutationObserver(callback);
observer.observe(targetNode, config);
//建立一个放弹幕的容器
var wrapper = document.createElement("div")
document.querySelector("#my-comment-stage").append(wrapper)
//使用第一行弹幕的时间来控制弹幕的并发
var startTime = 0
var MIN_TIME = 1000
var prevTop = 0
var FONT_SIZE = 50 //弹幕的宽度
var BEGIN_TOP = 70 //弹幕离最上方的距离
function send(danmu) {
if(!danmu) return;
var dom = danmu.cloneNode(true)
var now = new Date()
var clientWidth = wrapper.clientWidth
dom.style.position = 'absolute'
dom.style.zIndex = '10000'
dom.style.transition = 'transform 7s linear'
dom.style.transform = `translateX(${clientWidth}px)`
dom.style.fontSize = '20px'
dom.style.fontWeight = '800'
dom.style.color = '#fff'
dom.style.textShadow = '#000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0'
var top = BEGIN_TOP
if (startTime === 0 ) {
startTime = now
} else {
if(now - startTime <= MIN_TIME) {
top=prevTop + FONT_SIZE
prevTop = prevTop + FONT_SIZE
} else {
top=BEGIN_TOP
prevTop = BEGIN_TOP
startTime = now
}
}
dom.style.top = `${top}px`
wrapper.append(dom)
//弹幕滚动效果
setTimeout(function(){dom.style.transform = 'translateX(-200px)'},0)
//垃圾回收
setTimeout(function(){dom.remove()},7000)
}
}
})();