$(function() { let pathName = window.location.pathname; $('.menuList .p_loopitem').each(function() { let index = $(this).index(); let curUrl = $('.menuList .p_loopitem:eq('+index+') a').attr('href'); if (pathName == curUrl) { $(this).addClass('active').siblings().removeClass('active'); } }); $('.more').click(function() { $('.menuList').css({"left": "0px", "opacity": "1"}); let index; $('.menuList .p_loopitem').each(function() { index = $(this).index(); $(this).children('.s_title').css({ 'animation-name': 'textMove', 'animation-duration': '1s', 'animation-delay': '0.'+index+'s' }); }); setTimeout(function() { $('.menuList .s_title').addClass('textShow'); }, index+'00'); }); $('.close').click(function() { console.log($('.menuList .textMove')) $('.menuList').css({"left": "100%", "opacity": "0"}); $('.menuList .s_title').css('animation-name', 'none'); $('.menuList .s_title').removeClass('textShow'); }); })