欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > > 文章正文

vs code 更换背景 background,codebackground

来源: javaer 分享于  点击 13066 次 点评:287

vs code 更换背景 background,codebackground


             插件 : background

1.从vs code插件管理下载

2. GitHub: https://github.com/shalldie/vscode-background

3. Vscode Market: https://marketplace.visualstudio.com/items?itemName=shalldie.background

安装会导致vscode  不受支持, 只需屏蔽提示就行  (软件简介中写着

打开文件  --->   首选项  --->  设置  ----->   将下面的代码复制到右边(用户设置)   <----  修改图片地址

    "background.enabled": true,
    "background.useDefault": false,
        //是否使用默认图片
    "background.customImages": [
        // 支持本地图片和https开头的图片
        // 最多可分三栏,所以最多支持三张
        // 本地图片模板:file:///D:XXX.png
        "https://xxx.com/cdn/ybmq.min.png",  
        "https://xxx.com/cdn/ybmq.min.png",
        "https://xxx.com/cdn/ybmq.min.png"                
    ],
    "background.style": {
        "content": "''",
        "pointer-events": "none",
        "position": "absolute",
        "z-index": "99999",
        "width": "100%",
        "height": "100%",
        "background-position": "100% 100%",
        "background-repeat": "no-repeat",
        "opacity": 0.3
    }

 

相关文章

    暂无相关文章

用户点评