respond to the top most visible DOM element changing
$ {package mananger} install jkroso/top-most
then in your app:
var topmost = require('top-most')
create a new TopCell. If you pass a function be invoked with the current top-most node and subscribed to future changes. At least ones which arise from the browser resizing or scrolling. Its up to you to notify it of other possible changes such as DOM mutation.
get/set the Cells buffer. Buffer meaning the number of pixels which must be shown before a node is considered "on-screen"
check if the top most node has changed. If it has a "change" event will be emitted. You might want to call this after doing some DOM mutation etc..
clean up
topmost(document.getElementsByTagName('section'))
.buffer(30)
.on('change', function(el, index){
console.log('the %dth item is the top-most', index)
})
.change()
Just run make
and navigate your browser to example.html.
Inspired by and based on timoxley/scroll-position