Popular
Proportional depth
- 243 views
Event attribute proportional_depth that is getting added to all events contains a more reliable scroll depth metric than the traditional one.
Traditional scroll depth contains the percentage of the page that the user has already scrolled through. While this metric may be useful, the meaning of a 25% scroll depth may greatly vary between different screens and devices. The narrower the screen becomes the more the user has to scroll to get to the end of the page (or to 25%) so scroll depth is not really comparable between devices and screens as lots of articles detail this.
Proportional depth on the other hand is computed with the following simple formula:
proportional_depth = pixels a document has scrolled / height of your browser viewport.
Propertional depth basically tells how many browser windows fit into the amount of the page that has been scrolled through.