使用Skrollr和SkrollrMenu与RequireJS

时间:2013-10-15 19:56:30

标签: javascript requirejs skrollr

使用RequireJS使用skrollr和skrollrMenu时出错。这是我的main.js文件:

require.config({
    paths: {
        jquery: '../bower_components/jquery/jquery',
        skrollr: '../bower_components/skrollr/src/skrollr',
        skrollrMenu: '../bower_components/skrollr-menu/src/skrollr.menu'
    },
    shim: {
        skrollrMenu: {
            deps: ['skrollr']
        }
    }
});

require(['app', 'jquery', 'skrollr', 'skrollrMenu'], function (app, $) {
    'use strict';

    window.onload = function() {
        var s = skrollr.init();

        console.log(s);
        // //The options (second parameter) are all optional. The values shown are the default values.
        skrollr.menu.init(s, {
            //skrollr will smoothly animate to the new position using `animateTo`.
            animate: true,

            //The easing function to use.
            easing: 'sqrt',

            //How long the animation should take in ms.
            duration: function(currentTop, targetTop) {
                //By default, the duration is hardcoded at 500ms.
                return 500;

                //But you could calculate a value based on the current scroll position (`currentTop`) and the target scroll position (`targetTop`).
                //return Math.abs(currentTop - targetTop) * 10;
            },
        });
    }
});

当我加载页面时,我在skrollr.menu文件中得到错误Uncaught TypeError: Cannot call method 'relativeToAbsolute' of undefined

targetTop = _skrollrInstance.relativeToAbsolute(scrollTarget, 'top', 'top');

然后是console.log(s)的输出。这是否意味着skrollr.menu.init正在console.log(s)之前运行?

1 个答案:

答案 0 :(得分:1)

更新到skrollr-menu 0.1.6(我猜你正在运行0.1.5)。