1. 程式人生 > >vscode自定義背景圖片

vscode自定義背景圖片

在首選項設定 配置檔案加上以下內容    需要安裝background外掛

 "background.customImages":["file:///G:/timg.jpg"],
    "background.style":{
        "content":"''",
        "pointer-events":"none",
        "position":"fixed",
        "top":"30%",
        "left":"80%",
        "width":"20%",
         "height":"20%",
        "z-index":"99999",
        "background.repeat":"no-repeat",
       "background-size":"contain",
        "opacity":0.1
    },