Skip to content

Instantly share code, notes, and snippets.

@guizmo
Created April 5, 2012 20:23
Show Gist options
  • Save guizmo/2313819 to your computer and use it in GitHub Desktop.
Save guizmo/2313819 to your computer and use it in GitHub Desktop.
animations width and height
.main{
width:800px;
display:inline-block;
}
.sidebar{
width:300px;
display:inline-block;
}
/*Smartphones (portrait and landscape) ———– */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
.main{
width:480px;
/* webkit */
-webkit-animation-property: -webkit-width;
-webkit-animation-property: -webkit-height;
-webkit-transition-duration: 3s;
/* moz */
-moz-animation-property: -moz-width;
-moz-animation-property: -moz-height;
-moz-transition-duration: 3s;
/* opera */
-o-animation-property: -o-width;
-o-animation-property: -o-height;
-o-transition-duration: 3s;
}
.sidebar{
width:480px;
/* webkit */
-webkit-animation-property: -webkit-width;
-webkit-animation-property: -webkit-height;
-webkit-transition-duration: 3s;
/* moz */
-moz-animation-property: -moz-width;
-moz-animation-property: -moz-height;
-moz-transition-duration: 3s;
/* opera */
-o-animation-property: -o-width;
-o-animation-property: -o-height;
-o-transition-duration: 3s;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment