How to create div that appears in page scrolling

0

Some sites have a div that appears on the side of the page as it approaches the end of the page.

I do not know what its called but I have an example:  on the pages of the link sites, this div appears.

What is the name of this type of window / div? Does anyone know how to do or know some cool tutorial?

    
asked by anonymous 12.09.2016 / 17:01

1 answer

3

Infinite scrolling

Source:Reproduction/ SmashingMagazine

Are scripts created to improve the user experience in scrolling the page. It can also be called by its terms in English:

  • lazy loading
  • endless scrolling
  • autopager
  • endless pages

A good example is your Facebook news feed, which every time you reach the bottom of the page, it reloads you with new posts , without needing refresh the page, or the like.

Steady.js

A Javascript library for creating the effect on any HTML page.

jScroll An infinite scrolling jQuery plugin, it can load the content via AJAX, so I emphasize it.

ScrollMe

A jQuery plugin that assists you in creating effects for scrolling too on any HTML page. It has many effects and the options for customization are very wide.

  

Note: This is not a plugin for infinite scrolling, but the two together give a very nice effect. ScrollMe is for scrolling purposes.

23.09.2016 / 23:40