123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .wux-swipe {
- overflow: hidden;
- position: relative
- }
- .wux-swipe__cover {
- position: absolute;
- z-index: 2;
- background: 0 0;
- height: 100%;
- width: 100%;
- top: 0
- }
- .wux-swipe__actions {
- position: absolute;
- top: 0;
- bottom: 0;
- display: flex;
- overflow: hidden;
- white-space: nowrap;
- transition: all .25s
- }
- .wux-swipe__actions--left {
- left: 0
- }
- .wux-swipe__actions--right {
- right: 0
- }
- .wux-swipe__action {
- display: flex;
- align-items: center;
- justify-content: center;
- overflow: hidden
- }
- .wux-swipe__text {
- padding: 0 16rpx
- }
- .wux-swipe__content {
- position: relative;
- background-color: #fff;
- transition: all .25s
- }
- .wux-swipe--swiping .wux-swipe__actions,
- .wux-swipe--swiping .wux-swipe__content {
- transition: none
- }
|