Last active
November 24, 2015 05:14
-
-
Save AlphaAlec/c235d47a6951ac8160c8 to your computer and use it in GitHub Desktop.
WP Menu Item Count for Mobile Menu Transitions
This file contains hidden or 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
<?php // assuming your menu count was four, this is what the CSS/PHP combo would output ?> | |
<style type="text/css"> | |
#mobile-nav li:nth-of-type(1) { | |
-webkit-transition-delay: 0.033s; | |
-moz-transition-delay: 0.033s; | |
-o-transition-delay: 0.033s; | |
transition-delay: 0.033s; | |
} | |
#mobile-nav li:nth-of-type(2) { | |
-webkit-transition-delay: 0.066s; | |
-moz-transition-delay: 0.066s; | |
-o-transition-delay: 0.066s; | |
transition-delay: 0.066s; | |
} | |
#mobile-nav li:nth-of-type(3) { | |
-webkit-transition-delay: 0.099s; | |
-moz-transition-delay: 0.099s; | |
-o-transition-delay: 0.099s; | |
transition-delay: 0.099s; | |
} | |
#mobile-nav li:nth-of-type(4) { | |
-webkit-transition-delay: 0.132s; | |
-moz-transition-delay: 0.132s; | |
-o-transition-delay: 0.132s; | |
transition-delay: 0.132s; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment