为函数添加偏移量?

时间:2016-03-07 14:22:21

标签: jquery jquery-plugins offset jquery-waypoints

我使用了waypoint插件并需要帮助来修改偏移量。

我在哪里添加偏移量:' 25%' ?链接:http://imakewebthings.com/waypoints/api/offset-option/

$.ajax({
    url: '//cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.0/jquery.waypoints.js',
    dataType: 'script',
    cache: true,
    success: function() {
        $('.element').waypoint(function(direction) 
            {
            if (direction === 'down') {
            alert('Alert notification')
            this.destroy();
            }
        });
    }
});

2 个答案:

答案 0 :(得分:0)

据我所知,你应该能够传递一个选项对象,如:

    $('.element').waypoint({
        offset: "25%",
        handler:function(direction){
            if (direction === 'down') {
              alert('Alert notification')
              this.destroy();
            }
        }
    });

答案 1 :(得分:0)

如果您查看此页面http://imakewebthings.com/waypoints/api/offset-option/,则表示要传递一个对象。使用处理程序方法触发警报。

var waypoint = new Waypoint({
      element: document.getElementById('number-offset-negative'),
      handler: function(direction) {
        notify('25px past the top')
      },
      offset: -25
    })