简体   繁体   中英

Popup use scrollbar of window

I'm trying to create a popup which uses window scrollbars not the div ones. Something like what is on http://pinterest.com . How to achieve this effect? All my tries are unsuccessful, scrollbars appear on div. Window scollbars scroll the body content.

When you open popup window, you should remember current window scrollLeft/scrollTop positions somewhere, then apply overflow:hidden , height/width:100% to html and body, which will prevent page scrolling.

Create overlay div with position:absolute , z-index:9999 , left/top:0 , height/width:100% , overflow:auto , and append it to body - it will be scrollable container of your popup.

Inside of this container create div with position:absolute and left/top values, calculated in js to center it if necessary.

After you close popup, restore overflow , height/width styles for html/body, and apply scrollLeft/scrollTop values that were saved before opening popup.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM