一段代碼jsskrollr.js
大家一起看看這段js代碼,有引用skrollr.js,到底做了哪些事情?
翻過高山走不出你
2018-10-20 08:10:09
TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊
你去查上下文 data.curTop 和 data.lastTop 的取值
然后官方文檔里有描述
A listener function that gets called each time right before we render everything. The function will be passed an object with the following properties:
{ curTop: 10, //the current scroll top offset
lastTop: 0, //the top value of last time
maxTop: 100, //the max value you can scroll to. curTop/maxTop will give you the current progress.
direction: 'down' //either up or down}Returning false will prevent rendering.
當(dāng)返回 false 停止渲染
舉報(bào)