@nutui/nutui-react
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
68 lines (64 loc) • 1.11 kB
CSS
/* #ifdef harmony */
/* #endif */
/* #ifndef harmony */
/* #endif */
.nut-swiper {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
}
.nut-swiper-canmove-horizontal {
touch-action: pan-y;
}
.nut-swiper-canmove-vertical {
touch-action: pan-x;
}
.nut-swiper-indicator {
display: flex;
flex-direction: row;
justify-content: center;
position: absolute;
height: 4px;
width: 100%;
top: 89.33%;
z-index: 10;
}
.nut-swiper-indicator-vertical {
width: 8px;
height: 100%;
top: 0;
left: 12px;
flex-direction: column;
justify-content: center;
z-index: 1;
}
.nut-swiper-inner {
width: 100%;
height: 100%;
display: flex;
position: relative;
}
.nut-swiper-inner-vertical {
flex-direction: column;
}
.nut-swiper-slide {
width: 100%;
height: 100%;
position: relative;
flex-shrink: 0;
}
.nut-swiper-item {
width: 100%;
height: 100%;
}
[dir=rtl] .nut-swiper-indicator,
.nut-rtl .nut-swiper-indicator {
left: auto;
right: 50%;
}
[dir=rtl] .nut-swiper-indicator-vertical,
.nut-rtl .nut-swiper-indicator-vertical {
left: auto;
right: 12px;
}