2016-07-21 09:51:04 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-07-16 16:48:06 +08:00
|
|
|
滑块左右可以设置图标来表达业务含义。
|
|
|
|
|
2016-07-21 09:51:04 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
You can add an icon beside the slider to make it meaningful.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```css
|
2016-11-21 16:37:04 +08:00
|
|
|
.icon-wrapper {
|
2015-07-14 12:06:44 +08:00
|
|
|
position: relative;
|
2015-11-14 14:09:08 +08:00
|
|
|
padding: 0px 30px;
|
2015-07-14 12:06:44 +08:00
|
|
|
}
|
|
|
|
|
2016-11-21 16:37:04 +08:00
|
|
|
.icon-wrapper .anticon {
|
2015-07-14 12:06:44 +08:00
|
|
|
position: absolute;
|
2017-11-06 21:28:51 +08:00
|
|
|
top: -2px;
|
2015-07-14 12:06:44 +08:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2019-05-07 14:57:32 +08:00
|
|
|
color: rgba(0, 0, 0, 0.25);
|
2021-01-30 19:39:02 +08:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1;
|
2015-07-14 12:06:44 +08:00
|
|
|
}
|
|
|
|
|
2020-02-06 14:43:16 +08:00
|
|
|
.icon-wrapper .icon-wrapper-active {
|
2020-02-19 13:20:43 +08:00
|
|
|
color: rgba(0, 0, 0, 0.45);
|
2020-02-06 14:43:16 +08:00
|
|
|
}
|
|
|
|
|
2016-11-21 16:37:04 +08:00
|
|
|
.icon-wrapper .anticon:first-child {
|
2015-07-14 12:06:44 +08:00
|
|
|
left: 0;
|
|
|
|
}
|
2016-04-07 12:04:06 +08:00
|
|
|
|
2016-11-21 16:37:04 +08:00
|
|
|
.icon-wrapper .anticon:last-child {
|
2015-07-14 12:06:44 +08:00
|
|
|
right: 0;
|
|
|
|
}
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|
2020-02-06 14:43:16 +08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
[data-theme="dark"] .icon-wrapper .anticon {
|
|
|
|
color: rgba(255, 255, 255, 0.25);
|
|
|
|
}
|
|
|
|
[data-theme="dark"] .icon-wrapper .icon-wrapper-active {
|
|
|
|
color: rgba(255, 255, 255, .45);
|
|
|
|
}
|
|
|
|
</style>
|