npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jquery-animate-scroll

v1.0.0

Published

jQuery plugin to make page scroll looks smooth by animating it.

Downloads

55

Readme

jQuery Animate Scroll

Build Status Latest Version License

This is jQuery plugin which allow you to have a smooth page scrolling effect by animating it.

Table of contents

Dependency

This plugin has the following dependency:

  • jQuery >= 1.3

Installation

There are four different ways to install or download this jQuery plugin.

Install Using NPM

You can install this jQuery plugin using NPM. Simply run the following command inside your project directory.

npm install jquery-animate-scroll --save

Or you may add jquery-animate-scroll to your package.json dependencies:

{
  "dependencies": {
    "jquery-animate-scroll": "~1.0.0"
  }
}

Then run install command:

npm install

Install Using Bower

You may also install this jQuery plugin by leveraging Bower package. Run the following command to install this plugin:

bower install jquery-animate-scroll --save

You may also add this jquery-animate-scroll package to your bower.json file like so:

{
  "dependencies": {
    "jquery-animate-scroll": "*"
  }
}

Download Using Git

Another option to install this jQuery plugin is by using git command. Simply clone this repository by running the following command:

git clone https://github.com/risan/jquery-animate-scroll.git

Or if you prefer using ssh:

git clone [email protected]:risan/jquery-animate-scroll.git

Manual Download

You can also install this plugin by simply downloading it from:

jquery.animate-scroll.js

Or if you prefer the minimized version:

jquery.animate-scroll.min.js

Usage

There are numbers of way to use this plugin:

  • $(selector).animateScroll( options )
  • $.scrollTo( $target, options )
  • $(selector).scrollHere( options )

And each of these methods has the same options:

  • $container is an element that has the scroll, default: $(html,body)
  • speed is the duration to perform the scroll animation in milliseconds, default: 400
  • offset is the offset in pixels, default: 0

Using $(selector).animateScroll( options )

For example you have the following markup on your page:

<a href="#article-1">Go To Article One</a>

...

<h1 id="article-1">Article One</h1>

Now to turn the anchor have an animated scroll effect, add the following line inside your javacript code:

$('a').animateScroll();

The above code will initialize the animate scroll plugin. You may also pass some options like this:

$('a').animateScroll({
  $container: $('body'),
  speed: 1000,
  offset: -100
});

You may also set speed and offset options using HTML data attribute like so:

<a href="#article-1" data-speed="1000" data-offset="-100">Go To Article One</a>

You may check the demo file: demo/animate-scroll.html

Using $.scrollTo( $target, options )

Now to use the $.scrollTo( $target, options ), consider we have the following HTML markup:

<a href="#" id="link-1">Go To Article One</a>

...

<h1 id="article-1">Article One</h1>

To turn the anchor to have an animated scroll, use the following code:

$('#link-1').click(function( e ) {
  // Prevent default behaviour.
  e.preventDefault();

  // Scroll to article one.
  $.scrollTo( $('#article-1') );
});

You may also pass the options like so:

$.scrollTo( $('#article-1'), {
  $container: $('body'),
  speed: 1000,
  offset: -100
});

You may check the demo file: demo/scroll-to.html

Using $(selector).scrollHere( options )

And the last method you may use is the $(selector).scrollHere( options ). For example, consider you have the following HTML markup on your page:

<a href="#" id="link-1">Go To Article One</a>

...

<h1 id="article-1">Article One</h1>

To activate the animated scroll, here is the sample code:

$('#link-1').click(function( e ) {
  // Prevent default behaviour.
  e.preventDefault();

  // Scroll to article one.
  $('#article-1').scrollHere();
});

To pass the options, you can do it like this:

$('#article-1').scrollHere({
  $container: $('body'),
  speed: 1000,
  offset: -100
});

You may check the demo file: demo/scroll-here.html