jgthms / bulma-website

[DEPRECATED] Website for the Bulma CSS framework
http://bulma.io
MIT License
40 stars 35 forks source link

Hamburger #31

Closed kodaxx closed 8 years ago

kodaxx commented 8 years ago

I can get the hamburger to show up on mobile, though nothing happens when clicking on it. It's something to do with is-active I'm sure, but I think more documentation is needed.

kodaxx commented 8 years ago

I lied, I was using this without fully reading that it was the CSS only. For anyone that ends up here like I did, you can use jQuery:

$('.header-toggle').on('click', function(e) { $('#header-toggle, #top-nav').toggleClass("is-active"); e.preventDefault(); });