tt-mp
Version:
一套组件化、可复用、易扩展的头条小程序 UI 组件库
57 lines (47 loc) • 846 B
text/less
@import '../styles/mixins/index.less';
@import '../styles/themes/index.less';
.@{wux-prefix}-swipe {
overflow: hidden;
position: relative;
&__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 0.25s;
&--left {
left: 0;
}
&--right {
right: 0;
}
}
&__action {
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
&__text {
padding: 0 8px;
}
&__content {
position: relative;
background-color: #fff;
transition: all 0.25s;
}
&--swiping &__actions,
&--swiping &__content {
transition: none;
}
}