antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
46 lines (43 loc) • 903 B
text/less
@import (reference) './variable.less';
@pageInfinite: ant-page-infinite;
.@{pageInfinite} {
position: relative;
width: 100%;
box-sizing: border-box;
&-content {
width: 100%;
&::-webkit-scrollbar {
display: none;
}
}
&-wrap {
position: absolute;
bottom: 2 * @rpx;
left: 0;
right: 0;
width: 100%;
height: 6 * @rpx;
z-index: 2;
pointer-events: none;
}
&-area {
position: absolute;
left: 50%;
width: 52 * @rpx;
height: 6 * @rpx;
overflow: hidden;
border-radius: @corner-radius-sm / 2;
transform: translateX(-50%);
background-color: @pagination-area-background-color;
}
&-move {
position: absolute;
bottom: 0;
left: 0;
width: 50%;
height: 100%;
transition: all 100ms linear;
border-radius: @corner-radius-sm / 2;
background-color: @pagination-move-background-color;
}
}