w-ui
Version:
A Vue.js 2.0 UI Toolkit for mobile
66 lines (59 loc) • 1.06 kB
text/less
.wui-infinite-scroll-h {
width: 100%;
height: 100%;
overflow: hidden;
.wui-infinite-list{
width: 10000%;
height: 100%;
}
.wui-infinite-container{
display: flex;
align-content: center;
justify-content: flex-start;
flex-wrap: nowrap;
}
.wui-infinite-item{
position: relative;
flex-grow: 0;
flex-shrink: 0;
}
.wui-infinite-item-mask{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 9999
}
}
.wui-infinite-scroll-v {
width: 100%;
height: 100%;
overflow: hidden;
.wui-infinite-list{
width: 100%;
height: 10000%;
}
.wui-infinite-container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
flex-wrap: wrap;
}
.wui-infinite-item{
position: relative;
flex-grow: 0;
flex-shrink: 0;
width: 100%;
overflow: auto;
}
.wui-infinite-item-mask{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 9999
}
}