VSCode中怎麼配置背景圖片?以下這篇文章跟大家介紹一下VScode中透過外掛設定背景圖片的方法,希望對大家有幫助!
#1、在vscode擴充中,找到background這個外掛並安裝。 【推薦學習:《vscode入門教學》】
#2、開啟settings.json設置,設定自己喜歡的背景圖片
開啟檔案>首選項>設定
#// background相关配置 Start "background.useDefault": false, // 是否使用默认图片,改成false不默认,设置自己想要的 "background.style": { "content": "''", "pointer-events": "none", "position": "absolute", "bottom": "0px", "right": "0", "z-index": "99999", "width": "100%", "height": "100%", "background-position": "0% 0%", "background-size": "cover", "background-repeat": "no-repeat", "opacity": 0.3 }, "background.customImages": [ "file:///C:/VSCodeBackground/ram1.jpg", //图片的路径地址 ,最多 3张 // "file:///D:/VSCodeBackground/ram2.png", // "file:///D:/VSCodeBackground/ram3.jpg", ], // background相关配置 End
3、效果
Fix Checksums: Apply
以上是淺析VSCode中怎麼配置背景圖(外掛分享)的詳細內容。更多資訊請關注PHP中文網其他相關文章!