mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
14 lines
335 B
JavaScript
14 lines
335 B
JavaScript
(function($) {
|
|
$(function(){
|
|
var $gnb = $('.gnb');
|
|
$("#mobile_menu_btn").on('click', function(){
|
|
var isOpened = $(this);
|
|
if(isOpened.hasClass('opened')){
|
|
$("#gnb").find(">ul").slideUp(200);
|
|
}else{
|
|
$("#gnb").find(">ul:not(:animated)").slideDown(200);
|
|
}
|
|
isOpened.toggleClass('opened');
|
|
});
|
|
});
|
|
})(jQuery);
|