File: D:/HostingSpaces/SBogers10/kemi.komma.pro/resources/assets/js/site/scrollToHandler.js
/* ==========================================================================
Scroll To Click handler
========================================================================== */
var ScrollToHandler = {
init : function(){
$('.scroll-to-target').bind('click',function()
{
ScrollToHandler.scrollToTarget($(this));
return false;
});
},
/**
* Handles click on the mouse with the arrow
*
* @param el
*/
scrollToTarget : function(el, offset, time){
offset = isset(offset) ? offset : 126;
time = isset(time) ? time : 800;
var scrollTo = el.prop('href');
scrollTo = scrollTo.substr(scrollTo.indexOf('#')+1);
var body = $('html,body');
body.animate({
scrollTop: $('#'+scrollTo).offset().top - offset
}, time);
body.on("scroll mousedown wheel DOMMouseScroll mousewheel keyup touchmove", function(){
body.stop();
});
}
};
ScrollToHandler.init();