Add a delay in jquery -
i add delay between apparition of circle , apparition of content. tried "delay" nothing happen.
$('.toggle-menu').click(function (e) { e.preventdefault(); $('h4.toggle-menu').text($(this).text() == 'menu' ? 'close' : 'menu'); $('.circle').toggleclass('opacity'); $('#overlay-menu').delay(5000).toggleclass('opacity'); $('.circle').toggleclass('open'); });
try using window.settimeout.
window.settimeout(function() { $('#overlay-menu').toggleclass('opacity');} ,1000 );
Comments
Post a Comment