Socket
Socket
Sign inDemoInstall

vanilla-back-to-top

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

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.8K
increased by10.39%
Maintainers
1
Weekly downloads
 
Created
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/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,
  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
  • 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

FAQs

Package last updated on 29 Dec 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc