VS Code添加背景图

like this:


  • first step: downlad backgroud extension from market.
  • second step: update background settings.(note: file path start with "file:///....")


    VS Code添加背景图_第1张图片

    settings:

    "background.useDefault": false,
    "background.customImages": [
        "file:///C:/Users/Administrator/Pictures/Saved Pictures/231102-151931226201f1.jpg",
        "file:///C:/Users/Administrator/Pictures/Saved Pictures/231102-151931226201f1.jpg",
        "file:///C:/Users/Administrator/Pictures/Saved Pictures/231102-151931226201f1.jpg"
    ],
    "background.enabled": true,
    "background.style": {
        "background-repeat": "no-repeat",
        "background-size": "cover",
        "-webkit-background-size": "cover",
        "-o-background-size": "cover",
        "opacity": 0.3
    },
    "background.useFront": false,

你可能感兴趣的:(VS Code添加背景图)