Jquery航点 - 当父元素通过50%时销毁粘性

时间:2015-05-29 10:25:22

标签: jquery jquery-waypoints

我确定这很简单,但已经有一段时间了,似乎无法正确使用语法。我有一系列包含标题的部分,当父级点击页面顶部时,标题会固定在顶部。我希望在父元素超过顶部50%时销毁粘性,但似乎不能正确。

继承人我在哪里宣布了航点 - 我曾尝试在其中编写一个处理程序来定位标题并销毁航路点,但我还没有使用它。

        $('.content').each(function() {                 
        new Waypoint.Inview({
            element: this,
            enter: function(direction) {
                $(this.element).addClass('active')
            },
            exited: function(direction) {
                $(this.element).removeClass('active')
            }           
        })
        new Waypoint.Sticky({
            element: $(this).children('.caption')
        })
    }); 

0 个答案:

没有答案