Skip to content

Instantly share code, notes, and snippets.

@wkei
Last active June 1, 2018 08:01
Show Gist options
  • Save wkei/8f13ab90ec78342ac1d1df2e573193ef to your computer and use it in GitHub Desktop.
Save wkei/8f13ab90ec78342ac1d1df2e573193ef to your computer and use it in GitHub Desktop.
simple pagination principle

principle:

  • always show the first and the lastest page
  • show two preview pages and two next pages of current page

<= 8

  1 2 3 4 5 6 7 8

> 8

  [1] 2 3 4 5 ... 9
  1 2 3 [4] 5 6 ... 9
  1 ... 3 4 [5] 6 7 ... 9
  1 ... 4 5 [6] 7 8 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment