mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* add contribute doc * fix url path * 文档格式调整 * readme 标题修改 * contribute guide for english * contribute for english * add pr & issue guildlines * change title && add pr & issue in zh_CN.md * add desc in zh_CN * add zh-CN markdown
54 lines
766 B
CSS
54 lines
766 B
CSS
@import './common/var.css';
|
|
|
|
.van-swipe {
|
|
position: relative;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
&__indicators {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
&__indicator {
|
|
width: 5px;
|
|
height: 5px;
|
|
display: inline-block;
|
|
border-radius: 100%;
|
|
background: $gray-dark;
|
|
opacity: .8;
|
|
margin: 0 3px;
|
|
z-index: 1;
|
|
|
|
&--active {
|
|
background: $orange;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&__items {
|
|
position: relative;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
&-item {
|
|
display: none;
|
|
height: 100%;
|
|
width: 100%;
|
|
text-align: center;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
&:first-child {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|