收藏
回答

能否更换switch开关的颜色?

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 需求 bnt 客户端 Android 6.6.6 2.2.0

- 需求的场景描述

能否更换switch开关的颜色?


- 希望提供的能力

开是  绿色

关是   红色(现在默认是白色)

回答关注问题邀请回答
收藏

3 个回答

  • 世纪之声
    世纪之声
    2020-12-02

    可以修改背景颜色和小圆球的颜色,但是小圆球的颜色只能设置一次,坑。。。

    /*swtich整体大小及背景色*/

    .wx-switch-input{

    width: 80rpx !important;

    height: 40rpx !important;

    background: #0C2648 !important;

    border: #0C2648 !important;

    }

    /*白色样式(false的样式)*/

    .wx-switch-input::before{

    width: 80rpx !important;

    height: 40rpx !important;

    box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.5);

    }

    /* 中间的小圆球 */

    /*绿色样式(true的样式)*/

    .wx-switch-input::after{

    width: 40rpx !important;

    height: 40rpx !important;

    }


    2020-12-02
    有用 2
    回复 1
    • 世纪之声
      世纪之声
      2022-07-01
      2022-07-01
      回复
  • 呃
    2018-05-21

    请仔细阅读文档


    2018-05-21
    有用 1
    回复
  • 显龙
    显龙
    2018-05-20

    有人回答一下?

    2018-05-20
    有用
    回复 1
登录 后发表内容