Skip to content

Instantly share code, notes, and snippets.

@thoughtpalette
Created January 10, 2014 19:28
Show Gist options
  • Save thoughtpalette/8360882 to your computer and use it in GitHub Desktop.
Save thoughtpalette/8360882 to your computer and use it in GitHub Desktop.
Mobile CSS Awesomeness
/* Fix overflow scrolling wonkiness */
-webkit-overflow-scrolling: touch;
.list-first-level,
.list-second-level,
.list-third-level {
-o-transition: .3s linear;
-ms-transition: .3s linear;
-moz-transition: .3s linear;
-webkit-transition: .3s linear;
transition: .3s linear;
}
.slide-list {
-webkit-transform: translate3d(100%,0,0);
-moz-transform: translateX(100%);
-o-transform: translate3d(100%,0,0);
-ms-transform: translateX(100%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment