Created
April 5, 2012 20:23
-
-
Save guizmo/2313819 to your computer and use it in GitHub Desktop.
animations width and height
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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