How can I get a fixed-position menu like slashdot's comment filtration menu - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T01:20:20Z http://stackoverflow.com/feeds/question/56630 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/56630/how-can-i-get-a-fixed-position-menu-like-slashdots-comment-filtration-menu 0 How can I get a fixed-position menu like slashdot's comment filtration menu pkaeding 2008-09-11T14:09:01Z 2009-02-25T16:54:13Z <p>Slashdot has a little widget that allows you to tweak your comment threshold to filter out down-modded comments. It will be in one place if you scroll to the top of the page, and as you scroll down, at some point, where its original home is about to scroll off the page, it will switch to fixed position, and stay on your screen. (To see an example, click <a href="http://news.slashdot.org/news/08/09/10/2257242.shtml" rel="nofollow">here</a>.)</p> <p>My question is, how can I accomplish the same effect of having a menu be in one place when scrolled up, and switch to fixed position as the user scrolls down? I know this will involve a combination of CSS and javascript. I'm not necessarily looking for a full example of working code, but what steps will my code need to go through?</p> http://stackoverflow.com/questions/56630/how-can-i-get-a-fixed-position-menu-like-slashdots-comment-filtration-menu/56759#56759 4 Answer by pkaeding for How can I get a fixed-position menu like slashdot's comment filtration menu pkaeding 2008-09-11T14:51:27Z 2008-09-11T15:32:18Z <p>Okay, I figured it out. I will post it here in case it help anyone else. This solution uses prototype, and an internal library that gives me the registerEvent, getElementX and getElementY functions, which do what you would think.</p> <pre><code>var MenuManager = Class.create({ initialize: function initialize(menuElt) { this.menu = $(menuElt); this.homePosn = { x: getElementX(this.menu), y: getElementY(this.menu) }; registerEvent(document, 'scroll', this.handleScroll.bind(this)); this.handleScroll(); }, handleScroll: function handleScroll() { this.scrollOffset = document.viewport.getScrollOffsets().top; if (this.scrollOffset &gt; this.homePosn.y) { this.menu.style.position = 'fixed'; this.menu.style.top = 0; this.menu.style.left = this.homePosn.x; } else { this.menu.style.position = 'absolute'; this.menu.style.top = null; this.menu.style.left = null; } } }); </code></pre> <p>Just call the constructor with the id of your menu, and the class will take it from there.</p> http://stackoverflow.com/questions/56630/how-can-i-get-a-fixed-position-menu-like-slashdots-comment-filtration-menu/475955#475955 2 Answer by Supreme for How can I get a fixed-position menu like slashdot's comment filtration menu Supreme 2009-01-24T12:26:38Z 2009-01-24T12:26:38Z <p>Thanks for the effort of sharing this code. I made some small changes to make it work with the current release of Prototype.</p> <pre><code>var TableHeaderManager = Class.create({ initialize: function initialize(headerElt) { this.tableHeader = $(headerElt); this.homePosn = { x: this.tableHeader.cumulativeOffset()[0], y: this.tableHeader.cumulativeOffset()[1] }; Event.observe(window, 'scroll', this.handleScroll.bind(this)); this.handleScroll(); }, handleScroll: function handleScroll() { this.scrollOffset = document.viewport.getScrollOffsets().top; if (this.scrollOffset &gt; this.homePosn.y) { this.tableHeader.style.position = 'fixed'; this.tableHeader.style.top = 0; this.tableHeader.style.left = this.homePosn.x; } else { this.tableHeader.style.position = 'absolute'; this.tableHeader.style.top = null; this.tableHeader.style.left = null; } } </code></pre> <p>});</p> http://stackoverflow.com/questions/56630/how-can-i-get-a-fixed-position-menu-like-slashdots-comment-filtration-menu/584853#584853 0 Answer by Clayton Bellmor for How can I get a fixed-position menu like slashdot's comment filtration menu Clayton Bellmor 2009-02-25T05:49:15Z 2009-02-25T05:49:15Z <p>Do either of you have a working example of the code you've pasted? I am extremely interested in implementing something much like this, with a different application altogether. </p> <p>I'd be very very interested!</p> http://stackoverflow.com/questions/56630/how-can-i-get-a-fixed-position-menu-like-slashdots-comment-filtration-menu/586842#586842 0 Answer by Lars for How can I get a fixed-position menu like slashdot's comment filtration menu Lars 2009-02-25T16:54:13Z 2009-02-25T16:54:13Z <p>For some reason, using the valuable input indicated above, I do not seem to get it to work. Do you have a website with a working example using the code above?</p>