VisualViewport: scroll event
The scroll
event of the VisualViewport
interface is fired when the visual viewport is scrolled.
Syntax
Use the event name in methods like addEventListener()
, or set an event handler property.
addEventListener('scroll', event => { })
onscroll = event => { }
Event type
A generic Event
.
Examples
You can use the scroll
event in an addEventListener
method:
visualViewport.addEventListener('scroll', function() {
/* ... */
});
Or use the onscroll
event handler property:
visualViewport.onscroll = function() {
/* ... */
};
Specifications
Specification |
---|
Visual Viewport API # events |
Visual Viewport API # dom-visualviewport-onscroll |
Browser compatibility
BCD tables only load in the browser