wwwwwllllk 发表于 2023-3-30 19:01:16

b站直播全屏的时候删除下面的刷礼物栏

本帖最后由 wwwwwllllk 于 2023-3-30 19:26 编辑

最近b站直播开全屏显示显示个刷礼物的功能,看着好难受,移动鼠标就出来了,所以我们就可以用脚本让它消失。3行代码就可以实现。脚本猫就是这么神奇

```
// ==UserScript==
// @name         b站直播全屏的时候删除下面的刷礼物栏
// @namespace    https://bbs.tampermonkey.net.cn/
// @version      0.1.0
// @description烦死了好恶心
// @author       小废物
// @match      https://live.bilibili.com/*
// ==/UserScript==

(function () {
    'use strict';

    // 直接把刷礼物显示的标签删除,它是鼠标移下去就显示移开屏幕就隐藏
    setTimeout(() => {
      let element = document.getElementById("full-screen-interactive-wrap");
      if (element) {
            element.parentNode.removeChild(element);
      }
    }, 3000)
    // 把回答的放到下面
    document.querySelector('fullscreen-danmaku').style.bottom = '10px'
})();
```


在样式设置的时候本来想用,但是没有生效,不知道是什么问题,所以我上面用js设置了
```
GM_addStyle(`
    .fullscreen-danmaku {
      bottom: 10px;
      background-color: red;
    }
`)
```

yany936 发表于 2023-4-14 19:20:15

请问能不能添加一个宽屏也去掉下面的刷礼物栏

wwwwwllllk 发表于 2023-4-14 21:28:37

yany936 发表于 2023-4-14 19:20
请问能不能添加一个宽屏也去掉下面的刷礼物栏

宽屏是什么意思,默认打开的那个页面?

yany936 发表于 2023-4-15 11:03:31

wwwwwllllk 发表于 2023-4-14 21:28
宽屏是什么意思,默认打开的那个页面?

网页全屏!(data/attachment/forum/202304/15/110325y6xy1x8l81a0y11b.png)

wwwwwllllk 发表于 2023-4-15 18:54:43

yany936 发表于 2023-4-15 11:03
网页全屏!(data/attachment/forum/202304/15/110325y6xy1x8l81a0 ...

后面有时间给gg加!

yany936 发表于 2023-4-16 10:30:32

wwwwwllllk 发表于 2023-4-15 18:54
后面有时间给gg加!

好的,谢谢
页: [1]
查看完整版本: b站直播全屏的时候删除下面的刷礼物栏