This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
smoothScroll(1000); | |
function smoothScroll (duration) { | |
$('a[href^="#"]').on('click', function(event) { | |
var target = $( $(this).attr('href') ); | |
if( target.length ) { | |
event.preventDefault(); | |
$('html,body').animate({ | |
scrollTop: target.offset().top |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Carousel | |
// http://owlgraphic.com/owlcarousel/ | |
var owl = $(".carousel"); | |
owl.owlCarousel({ | |
items : 1, | |
}); | |
///Delete this part to remove mousewheel scroll img prev/next | |
owl.on("mousewheel", ".owl-wrapper", function (e) { | |
if (e.deltaY > 0) { | |
owl.trigger("owl.prev"); |