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

slippery

v1.2.1

Published

A Pure Javascript slider

Downloads

31

Readme

Build Status GitHub GitHub stars

Slippery 1.2.1

A Pure Javascript slider.

Demo

Read full documentation

Getting started

Slippery has a few methods to connect to your project: CDN, npm or downloading latest release.

CDN

For using slippery with CDN you need to include CSS in your <head> tag.

Instead x.x.x in slippery@x.x.x put version from the top readme.
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/dist/css/slippery.min.css">

Also needed inclusion Javascript before closing <body> tag.

<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/js/slippery.min.js"></script>

npm

Firstly install slippery package from npm.

npm i -D slippery

Include Javascript

If you're using Webpack

In your Javascript file import slippery.

import Slippery from 'slippery';
If you're not using Javascript bundler.

Then move slippery.min.js from directory /node_modules/slippery/dist/js/ in your project folder.
Include this one before closing <body> tag

<script src="/path/to/dir/slippery.min.js"></script>

Include CSS

If you're Sass/SCSS or another CSS preprocessor.

Import slippery.min.css in your Sass/SCSS file using @import.

@import "/node_modules/slippery/dist/css/slippery.min.css"

If you're using another preprocessor, use equivalent of it.

If you're not using CSS preprocessor.

Then just include slippery.min.css inside of <head> tag.

<link rel="stylesheet" href="/path/to/dir/slippery.min.css">

Release

If you don't want to use CDN and you don't use npm, then you need to download latest release from Releases.
After that unpack archive and move CSS/JS files from slippery-x.x.x/dist/ to where you want to.
Finally include slippery.min.css inside <head> tag.

<link rel="stylesheet" href="/path/to/dir/slippery.min.css">

Also include slippery.min.js before closing tag.

<script src="/path/to/dir/slippery.min.js"></script>

Using

HTML Markup

<div class="slippery">
  <div class="slippery__item">Slide 1</div>
  <div class="slippery__item">Slide 2</div>
  <div class="slippery__item">Slide 3</div>
</div>

After including slippery with one of methods and adding HTML markup.
Initialize slippery instance in your Javascript file or inside <script> tag.

Initialization

const slippery = new Slippery('.slippery');

After that slippery instance will be initialized with default settings.

Initialization with custom settings

If you want to pass your own settings into slippery, you also need to pass an object besides passing string with CSS selector.

const slippery = new Slippery('.slippery', {
  nav: true,
  dots: true,
  swipes: false,
  margins: 15,
  adaptiveHeight: true,
  items: 2,
  transition: {
    type: 'ease-in-out',
  },
  breakpoints: {
    420: {
      swipes: true,
      nav: false,
    },
  },
});