绩效考核手机版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
425 B

.s-swipe-action {
position: relative;
overflow: hidden;
cursor: grab;
user-select: none;
&__wrap {
transition-timing-function: cubic-bezier(.18, .89, .32, 1);
transition-property: transform;
}
&__left,
&__right {
position: absolute;
top: 0;
height: 100%;
}
&__left {
left: 0;
transform: translate(-100%);
}
&__right {
right: 0;
transform: translate(100%);
}
}