Skip to content

Instantly share code, notes, and snippets.

@pvpshoot
Created April 20, 2015 06:09
Show Gist options
  • Save pvpshoot/7ffde666d96b08538b93 to your computer and use it in GitHub Desktop.
Save pvpshoot/7ffde666d96b08538b93 to your computer and use it in GitHub Desktop.
$(document).ready(function () {
$('.humburger').on('click', function () {
if (!$(this).hasClass('in')) {
$(this).addClass('in');
$('.main-nav').addClass('in');
}
else{
$(this).removeClass('in');
$('.main-nav').removeClass('in');
}
});
var mainSlider = $('.main-slider').owlCarousel({
loop:true,
margin:0,
nav:false,
items: 1
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment