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

How to change the background in vscode

藏色散人
藏色散人Original
2020-02-03 14:56:114888browse

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,图片才能出来哦

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!

Statement:
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