jquery - Rounded Animated Navigation -


i'm trying reproduce effect : codyhouse

but more simple.

so try begin. didn't manage expand circle top hand left corner . , cover page without scrollbar :-/ it's not simple. after content appears. didn't manage :-(

my jsfiddle

$('.toggle-menu').click(function (e) {     e.preventdefault();     $('h4.toggle-menu').text($(this).text() == 'menu' ? 'close' : 'menu');      $('.circle, #overlay-menu').toggleclass('opacity');     $('.circle').addclass('open');  }); 

there css instead of js codes. please check following fiddle once.

updated fiddle

$('.toggle-menu').click(function (e) { e.preventdefault(); $('h4.toggle-menu').text($(this).text() == 'menu' ? 'close' : 'menu');  $('.circle, #overlay-menu').toggleclass('opacity'); $('.circle').toggleclass('open');  }); 

Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -