Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function start() {
  2. window.max = 0;
  3. window.ntzyz = setInterval(() => {
  4. window.max = Math.max(document.getElementsByClassName('bilibili-player-video-danmaku')[0].childElementCount,window.max);
  5. }, 100);
  6. }
  7.  
  8. function stop() {
  9. console.log(`最大同屏弹幕数:${window.max}`);
  10. clearInterval(window.ntzyz);
  11. }
  12.  
  13. start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement