mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
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.
29 lines
854 B
29 lines
854 B
/* Push styles (to be used with push.js) |
|
-------------------------------------------------- */ |
|
|
|
// Fade animation |
|
.content.fade { |
|
left: 0; |
|
opacity: 0; |
|
-webkit-transition: opacity .2s ease-in-out; |
|
transition: opacity .2s ease-in-out; |
|
} |
|
.content.fade.in { |
|
opacity: 1; |
|
} |
|
// Slide animation iOS7 |
|
.content.slide { |
|
-webkit-transition-timing-function: cubic-bezier(.1, .7, .1, 1); //Thanks to @c2prods |
|
-webkit-transform: translate3d(0, 0, 0); |
|
transform: translate3d(0, 0, 0); |
|
-webkit-transition: -webkit-transform .25s ease-in-out; |
|
transition: transform .25s ease-in-out; |
|
} |
|
.content.slide.left { |
|
-webkit-transform: translate3d(-100%, 0, 0); |
|
transform: translate3d(-100%, 0, 0); |
|
} |
|
.content.slide.right { |
|
-webkit-transform: translate3d(100%, 0, 0); |
|
transform: translate3d(100%, 0, 0); |
|
} |