shalldie / vscode-background

Bring background images to your vscode. vscode background 背景扩展插件。
https://marketplace.visualstudio.com/items?itemName=shalldie.background
MIT License
1.31k stars 138 forks source link

add background videos #370

Closed 404jv closed 1 year ago

404jv commented 1 year ago

Hello everyone! Is it possible to include videos in the background too?

I am using a plugin called Glassit-VSC to make my vscode transparent then I put some videos behind it to see how it looks and it's awesome (see it).

But, when I tried to create a GIF with that mp4 to use as a background image, of course, it lost a lot of quality (see it). Is there a way to add the video directly into the editor?

suiyun39 commented 1 year ago

CSS only can add some images to HTML (use background). If add a video, we need to operate DOM, This is complex and dangerous for a vscode plugin.


If you really need, Recommended use monkey-patch

404jv commented 1 year ago

@NoDocCat Thank you, I'll take a look.