wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
59 lines (49 loc) • 1.03 kB
text/less
@import "../styles/mixins/index.less";
@import "../styles/themes/index.less";
.@{wux-prefix}-swipe {
overflow: hidden;
position: relative;
cursor: grab;
&__cover {
position: absolute;
z-index: 2;
background: transparent;
height: 100%;
width: 100%;
top: 0;
}
&__actions {
position: absolute;
top: 0;
bottom: 0;
display: flex;
overflow: hidden;
white-space: nowrap;
transition: all .25s;
&--left {
left: 0;
}
&--right {
right: 0;
}
}
&__action {
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
cursor: pointer;
}
&__text {
padding: 0 8px;
}
&__content {
position: relative;
background-color: #fff;
transition: all .25s;
}
&--swiping &__actions,
&--swiping &__content {
transition: none;
}
}