Socket
Socket
Sign inDemoInstall

vanilla-back-to-top

Package Overview
Dependencies
0
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vanilla-back-to-top

Configurable zero dependency Back To Top button


Version published
Weekly downloads
2.1K
decreased by-6.39%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Vanilla Back To Top

Configurable zero dependency Back To Top button.

Ideal for pre-rendered blogs with no frameworks, e.g., Hexo.

How to use

Add this to your HTML:

<script src="https://unpkg.com/vanilla-back-to-top@@1.1.0/dist/index.js"></script>
<script>addBackToTop({})</script>

Optionally customise CSS of the button using #back-to-top selector, e.g.:

#back-to-top a {
  text-indent: -9999px;
  background-image: url(back-to-top.png)
}
@media screen and (max-width: 479px) {
  #back-to-top {
    right: 10px;
    bottom: 10px;
  }
}

Options

addBackToTop function accepts many options, e.g.:

addBackToTop({
  id: 'back-to-top',
  showWhenScrollTopIs: 300,
  onClickScrollTo: 0,
  innerElement: document.createTextNode('Up'),
  size: 50,
  fontSize: 14,
  cornerOffset: 20,
  backgroundColor: '#000',
  textColor: '#fff',
  zIndex: 1,
  scrollContainer: document.documentElement
})

^ All these are also default values.

  • id - id attribute of the button
  • showWhenScrollTopIs - show the button when page got scrolled by this number of pixels
  • onClickScrollTo - where to scroll to when the button gets clicked, 0 means the very top
  • innerElement - DOM element to put inside the button; with jQuery you can put something like this: $('<svg>...</svg>').get(0)
  • size - width and height of the button in pixels
  • fontSize - font size of the text inside the button
  • cornerOffset - right and bottom offset of the button relative to viewport
  • backgroundColor - background color of the button
  • textColor - text color of the button
  • zIndex - z-index of the button
  • scrollContainer - if only part of your website gets scrolled, e.g., when your sidebar never scrolls with content, put the scrolled DOM element here

Keywords

FAQs

Last updated on 30 Dec 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc