Skip to content

Latest commit

 

History

History
executable file
·
34 lines (27 loc) · 598 Bytes

README.md

File metadata and controls

executable file
·
34 lines (27 loc) · 598 Bytes

Responsive Menu

Super simple Flexbox based SCSS + jQuery Responsive Menu.

DEMO

Change all values in _vars.scss file (colors, position, fonts...)

$colors: (
  menu-bg: rgba($primary, 0.8),
  link-color: white,
  link-color-hover: darken($primary, 10%),
  link-bg: $primary,
  link-bg-hover: rgba(white, 0.5),
  ...
  
);

Set the breakpoint to jQuery

jQuery(document).ready(function($) {
	$('.menu').responsiveMenu({
		breakpoint: '992'
	});
});

# Clone or download and try yourself
npm install