Home > Development Tools > VSCode > How to change the background in vscode

How to change the background in vscode

藏色散人
Release: 2020-02-03 14:57:08
Original
4881 people have browsed it

How to change the background in vscode

How to change the background in vscode?

How to change vscode background

First download the plug-in from the store

How to change the background in vscode

Then add the following code to setting.json

"background.customImages": [
    "file:///D:/独角兽.jpg"
  ],
  "background.style": {
    "content": "''",
    "pointer-events": "none",
    "position": "absolute", //图片位置
    "width": "100%",
    "height": "100%",
    "z-index": "99999",
    "background.repeat": "no-repeat",
    "background-size": "100%,100%", //图片大小
    "opacity": 0.05 //透明度
  },
  "background.useFront": true,
  "background.useDefault": false  //这里如果为true,则自己设置的图片不起作用,改为false,图片才能出来哦
Copy after login

How to change the background in vscode

Recommended related articles and tutorials: vscode tutorial

The above is the detailed content of How to change the background in vscode. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template