-
Notifications
You must be signed in to change notification settings - Fork 0
CSS scrolltop return 0
ythy edited this page Jan 19, 2018
·
1 revision
use
pageYOffset
instead ofscrolltop
The pageXOffset
and pageYOffset
properties returns the pixels the current document has been scrolled from the upper left corner of the window, horizontally and vertically.
The pageXOffset
and pageYOffset
properties are equal to the scrollX and scrollY properties.
These properties are read-only.
For IE8 and earlier, you can use document.documentElement.scrollLeft
and document.documentElement.scrollTop
instead
pageYOffset
支持IE9及以上. 尽量不用scrolltop
已保持chrome兼容性
tell me how get back to sunshine