vue elementui Switch组件添加开关样式

 

 

/deep/ .el-switch {
      &::before {
        content: '开';
        display: none;
        color: #fff;
        z-index: 1;
        margin-right: -12px;
        transform: translateX(7px);
        font-size: 12px;
      }

      &::after {
        color: #fff;
        content: '关';
        z-index: 1;
        margin-left: -15px;
        transform: translateX(-4px);
        font-size: 12px;
      }

      &.is-checked::before {
        display: block;
      }

      &.is-checked::after {
        display: none;
      }
    }
posted @ 2022-11-18 09:49  吃饭七分饱  阅读(508)  评论(0编辑  收藏  举报