ant-design/components/slider/demo/icon-slider.md

46 lines
750 B
Markdown
Raw Normal View History

## zh-CN
2015-07-16 16:48:06 +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;
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);
font-size: 16px;
line-height: 1;
2015-07-14 12:06:44 +08:00
}
.icon-wrapper .icon-wrapper-active {
2020-02-19 13:20:43 +08:00
color: rgba(0, 0, 0, 0.45);
}
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
```
<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>