-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathswipe.css
33 lines (33 loc) · 845 Bytes
/
swipe.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*!
* recopick-swipe v0.1.4
* https://github.com/mctenshi/recopick-swipe
*
* Copyright 2014 RecoPick
* Released under the MIT license
*/
.recopick-swipe-stage {
position: relative;
}
.recopick-swipe-target {
position: relative;
-webkit-transform: translate3D(0, 0, 0);
-moz-transform: translate3D(0, 0, 0);
-ms-transform: translate3D(0, 0, 0);
-o-transform: translate3D(0, 0, 0);
transform: translate3D(0, 0, 0);
-webkit-transition: -webkit-transform 300ms;
-moz-transition: -moz-transform 300ms;
-ms-transition: -ms-transform 300ms;
-o-transition: -o-transform 300ms;
transition: transform 300ms;
}
.recopick-swipe-disabled-transition {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
.recopick-swipe-target-clone {
position: absolute;
}