Created
April 16, 2018 04:30
-
-
Save mikhy888/533ffd3489ab8b7f995fb27c95ad2b25 to your computer and use it in GitHub Desktop.
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
$("#dropDownMenu li").each(function(i) { | |
$(this).delay(100 * i).fadeIn(500); | |
}); | |
.sub-menu { | |
position: absolute; | |
z-index: 1000; | |
/* color: #fff; | |
right: 5px; */ | |
} | |
.sub-menu li { | |
display: none; | |
} | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<div class="sub-menu" id="dropDownMenu"> | |
<ul id="navbar"> | |
<li> First</li> | |
<li>Second</li> | |
<li>Third</li> | |
<li>Fourth</li> | |
<li>Fifth</li> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment