Skip to content

flean/flow-router-autoscroll

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Autoscroll for Flow Router

Based/Forked from Autoscroll for Iron Router by OK GROW!

A Flow Router enhancement that improves navigation for pages that have more than one screen-ful of content. It causes the page to scroll to the right place after changing routes (which people are often surprised to find doesn't happen by default with Flow Router).

"The right place" is:

  1. The previous position if we're returning via the back button, or
  2. The top of page otherwise

Why?

In The Old Days™ when you navigated to a new page the browser would unload the current page, load the new page, and position the viewport to the top of the page.

When changing routes using Flow Router the browser doesn't technically load a new page, it just changes content in the existing page (as far as the browser is concerned) so it doesn't scroll to the top. The viewport stays in the same place it was already. So when navigating from a page that's scrolled down already this feels to the user like navigating to a new page and being scrolled partway down, which feels unnatural.

Installation

meteor add tomwasd:flow-router-autoscroll

Configuration

The animation speed defaults to 200 ms. To change this use:

FlowRouterAutoscroll.animationDuration = 100;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%