admin管理员组文章数量:1346192
I'm building something where I show users items that they haven't seen.
Each item is in a <div>
, so when the user scrolls past a div, or views the div, I want that item to be marked as having been seen.
Google reader does this, if you scroll past an item in your feed there it automatically marks it as read.
How can this be tracked? Advice please.
Note: It shouldn't be restricted to using the mouse to scroll, hitting page down/up, using arrow keys, etc should also be counted. The main criteria is that the user has seen a div.
I'm building something where I show users items that they haven't seen.
Each item is in a <div>
, so when the user scrolls past a div, or views the div, I want that item to be marked as having been seen.
Google reader does this, if you scroll past an item in your feed there it automatically marks it as read.
How can this be tracked? Advice please.
Note: It shouldn't be restricted to using the mouse to scroll, hitting page down/up, using arrow keys, etc should also be counted. The main criteria is that the user has seen a div.
Share Improve this question asked May 24, 2011 at 14:39 AliAli 267k269 gold badges592 silver badges786 bronze badges 1- 3 As far as I know, they calculate each relevant div's offset from the top of the page and pare to the scroll height. Once scollHeight >= divHeight, then it's considered in-view. – Marc B Commented May 24, 2011 at 14:43
4 Answers
Reset to default 6You need jQuery's scrollTop
.
Something like:
$(window).scrollTop() > $('#mydiv').offset().top;
for when it first es into view, or add $('#mydiv').height()
to the top offset if you want it to be marked when it's fully in view.
You could use a solution like this, http://www.appelsiini/projects/viewport, which I used in the past.
Or see this for other solutions: Detecting divs as rendered in the window to implement Google-Reader-like auto-mark-as-read?
Have a look at $("#divid").scrollTop()
.
I think you'll need something like this...
$(window).scroll(function(){
var scroll = $(this).scrollTop();
var vieweditems = $('div').filter(function(){
return scroll> $(this).offset().top;
//pare the div's offset top with the window scroll position
// this returns the collection of viewed divs
})// this object is colleection of viewd divs
.removeClass('hilight')
//Remove the class which distinguishes the unread and read items
.map(function(){
return this.id.split('_')[1];
}).get();
//This is the collection of ids of viewd divs
//vieweditems now holds the ids of viewed divs
});
本文标签: javascriptHow to know when a user scrolls past a ltdivgtStack Overflow
版权声明:本文标题:javascript - How to know when a user scrolls past a <div>? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743824025a2545304.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论