Socket
Socket
Sign inDemoInstall

smoothscroll-polyfill

Package Overview
Dependencies
Maintainers
3
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smoothscroll-polyfill

Smooth Scroll behavior polyfill


Version published
Weekly downloads
579K
increased by3.49%
Maintainers
3
Weekly downloads
 
Created

What is smoothscroll-polyfill?

The smoothscroll-polyfill package provides a polyfill for the smooth scrolling behavior in browsers that do not support it natively. This allows developers to ensure a consistent smooth scrolling experience across different browsers.

What are smoothscroll-polyfill's main functionalities?

Polyfill Initialization

This code initializes the smoothscroll-polyfill, enabling smooth scrolling behavior in browsers that do not support it natively.

require('smoothscroll-polyfill').polyfill();

Smooth Scrolling to an Element

This code demonstrates how to smoothly scroll to a specific element on the page using the scrollIntoView method with the 'smooth' behavior option.

document.querySelector('#targetElement').scrollIntoView({ behavior: 'smooth' });

Smooth Scrolling to a Position

This code shows how to smoothly scroll to a specific position on the page using the window.scroll method with the 'smooth' behavior option.

window.scroll({ top: 1000, left: 0, behavior: 'smooth' });

Other packages similar to smoothscroll-polyfill

Keywords

FAQs

Package last updated on 26 Mar 2019

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