We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
有一个问题是,虽然在其他代码文件中背景图片都能正常显示出来,但是遇到ipynb文件时,则没有图片显示。这是我独有的bug还是本身就不支持?如果不支持的话,希望以后可以添加这个功能,让ipynb也支持显示背景。
OS(Win10 / Mac OSX / Linux)
vscode
The text was updated successfully, but these errors were encountered:
在编辑 ipynb 时,vscode 没有使用通用的编辑区,而是用 iframe 单独渲染了另一个 vscode-webview,因此插件生成的样式没有匹配。你可以把这两者理解为:设置的「UI 视图」和「JSON 视图」
且这个 webview 没有加载任何外部样式表,其中的样式是直接附加在 HTML 上的。虽然能通过调整包裹容器的样式加上一些背景,但无法做到很精细的控制。最终的结果是虽然能显示背景图片,但会被上层的元素覆盖掉且无法调整。
目前全屏背景倒是能正常工作,编辑区背景的话有时间我研究一下,如果能得到比较好的效果的话,这个功能会被加上。如果没办法做到很好的显示效果,那这个功能不会出现在 Release 中。
Sorry, something went wrong.
全屏可以:
/* 插件:"background" by shalldie */ "background.enabled": true, "background.fullscreen": { "images": [ "file:///C:/Users/Ellie/Desktop/Image/Anime/01.png", "file:///C:/Users/Ellie/Desktop/Image/Anime/02.png", "file:///C:/Users/Ellie/Desktop/Image/Anime/03.png", "file:///C:/Users/Ellie/Desktop/Image/Anime/04.png", "file:///C:/Users/Ellie/Desktop/Image/Anime/05.png", "file:///C:/Users/Ellie/Desktop/Image/Anime/06.png", "file:///C:/Users/Ellie/Desktop/Image/Anime/07.png", "file:///C:/Users/Ellie/Desktop/Image/Anime/08.png", ], "opacity": 0.1, // 透明度:0 ~ 0.6,越大越透明 "size": "cover", "position": "center", "interval": 3600, // 交替时间(ms),如果只有一张图,则无需此参数 "random": true, // 随机交替,如果只有一张图,则无需此参数 },
No branches or pull requests
Summary | 概述
有一个问题是,虽然在其他代码文件中背景图片都能正常显示出来,但是遇到ipynb文件时,则没有图片显示。这是我独有的bug还是本身就不支持?如果不支持的话,希望以后可以添加这个功能,让ipynb也支持显示背景。
Versions
OS(Win10 / Mac OSX / Linux)
:Windows11vscode
:1.87.0The text was updated successfully, but these errors were encountered: