Вход Регистрация
Файл: tyde/www/web/js/core/smooth-scroll.js
Строк: 61
<?php
/*! UIkit 2.24.3 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
(function(UI) {

    
"use strict";

    
UI.component('smoothScroll', {

        
boot: function() {

            
// init code
            
UI.$html.on("click.smooth-scroll.uikit""[data-uk-smooth-scroll]", function(e) {
                var 
ele UI.$(this);

                if (!
ele.data("smoothScroll")) {
                    var 
obj UI.smoothScroll(eleUI.Utils.options(ele.attr("data-uk-smooth-scroll")));
                    
ele.trigger("click");
                }

                return 
false;
            });
        },

        
init: function() {

            var 
$this this;

            
this.on("click", function(e) {
                
e.preventDefault();
                
scrollToElement(UI.$(this.hash).length UI.$(this.hash) : UI.$("body"), $this.options);
            });
        }
    });

    function 
scrollToElement(eleoptions) {

        
options UI.$.extend({
            
duration1000,
            
transition'easeOutExpo',
            
offset0,
            
complete: function(){}
        }, 
options);

        
// get / set parameters
        
var target    ele.offset().top options.offset,
            
docheight UI.$doc.height(),
            
winheight window.innerHeight;

        if ((
target winheight) > docheight) {
            
target docheight winheight;
        }

        
// animate to target, fire callback when done
        
UI.$("html,body").stop().animate({scrollToptarget}, options.durationoptions.transition).promise().done(options.complete);
    }

    
UI.Utils.scrollToElement scrollToElement;

    if (!
UI.$.easing.easeOutExpo) {
        
UI.$.easing.easeOutExpo = function(xtbcd) { return (== d) ? * (-Math.pow(2, -10 d) + 1) + b; };
    }

})(
UIkit);
?>
Онлайн: 1
Реклама