ElementUI中switch开关样式
switch默认样式
实现效果图
具体步骤
1)html 代码
添加class=“switch”,避免全局样式污染
<el-switch
class="switch"
v-model="switchvalue"
:validate-event="true"
active-text="新增"
inactive-text="累计"
inactive-color="#409EFF"
:width="40"
:active-value="1"
:inactive-value="0"
@change="agent_change"
></el-switch>
2)修改el-switch默认样式
我是单独写在一个样式文件夹里面,然后再在main.js中全局引用
/* 样式文件global.scss*/
/* switch按钮样式 */
.switch .el-switch__label {
position: absolute;
display: none;
color: #fff !important;
}
/*打开时文字位置设置*/
.switch .el-switch__label--right {
z-index: 1;
}
/* 调整打开时文字的显示位子 */
.switch .el-switch__label--right span{
margin-right: 20px;
}
/*关闭时文字位置设置*/
.switch .el-switch__label--left {
z-index: 1;
}
/* 调整关闭时文字的显示位子 */
.switch .el-switch__label--left span{
margin-right: 8px;
}
/*显示文字*/
.switch .el-switch__label.is-active {
display: block;
}
/* 调整按钮的宽度 */
.switch.el-switch .el-switch__core,
.el-switch .el-switch__label {
width: 60px !important;
margin: 0;
}
可根据自己喜好进行调整