Files
cmgd-mini-app/uni_modules/nutui-uni/components/swipe/index.scss
2026-01-05 12:47:14 +08:00

28 lines
402 B
SCSS

.nut-swipe {
display: block;
overflow: hidden;
&__inner {
position: relative;
cursor: grab;
transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
&__left,
&__right {
position: absolute;
top: 0;
height: 100%;
}
&__left {
left: 0;
transform: translate3d(-100%, 0, 0);
}
&__right {
right: 0;
transform: translate3d(100%, 0, 0);
}
}