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

basicrotate

v1.1.2

Published

Rotate throw a set of 360 degree images using your mouse or finger

Downloads

120

Readme

basicRotate

Donate via PayPal

Rotate throw a set of 360 degree images using your mouse or finger.

Contents

Demos

| Name | Description | Link | |:-----------|:------------|:------------| | Default | Includes most features. | Try it on CodePen |

Features

  • Works in all modern browsers and IE11 (with polyfills)
  • Supports any kind of images
  • Zero dependencies
  • CommonJS and AMD support
  • Simple JS API

Requirements

basicRotate depends on the following browser APIs:

Some of these APIs are capable of being polyfilled in older browsers. Check the linked resources above to determine if you must polyfill to achieve your desired level of browser support.

Setup

We recommend installing basicRotate using npm or yarn.

npm install basicrotate
yarn add basicrotate

Include the CSS file in the head tag and the JS file at the end of your body tag…

<link rel="stylesheet" href="dist/basicRotate.min.css">
<script src="dist/basicRotate.min.js"></script>

…or skip the JS file and use basicRotate as a module:

const basicRotate = require('basicrotate')
import * as basicRotate from 'basicrotate'

Usage

Create an element filled with equal-sized images. Add the basicRotate class and initialize basicRotate using the basicRotate.create function. That's it!

<div class="basicRotate">
	<img src="1.jpg">
	<img src="2.jpg">
	<img src="3.jpg">
	<!-- ... -->
</div>
basicRotate.create(document.querySelector('.basicRotate'))

API

.create(elem, opts)

Creates a new basicRotate instance.

Be sure to assign your instance to a variable. Using your instance, you can…

  • …get the current image index.
  • …jump back and forward.
  • …goto a specific image.

Examples:

const instance = basicRotate.create(document.querySelector('#rotate'))
const instance = basicRotate.create(document.querySelector('#rotate'), {
	index: 1,
	tolerance: 5
})
const instance = basicRotate.create(document.querySelector('#rotate'), {
	beforeChange: (instance, newIndex, oldIndex) => console.log('beforeChange', instance, newIndex, oldIndex),
	afterChange: (instance, newIndex, oldIndex) => console.log('afterChange', instance, newIndex, oldIndex)
})

Parameters:

  • elem {Node} The DOM element/node which contains all images.
  • opts {?Object} An object of options.

Returns:

  • {Object} The created instance.

Instance API

Each basicRotate instance has a handful of handy functions. Below are all of them along with a short description.

.current()

Returns the current image index.

Example:

const current = instance.current()

Returns:

  • {Number} Current image index.

.goto(newIndex)

Navigates to an image by index and executes the beforeChange and afterChange callback functions.

Example:

instance.goto(0)

Parameters:

  • newIndex {Number} Index of the image to be displayed.

.prev()

Navigates to the previous image and executes the beforeChange and afterChange callback functions.

Example:

instance.prev()

.next()

Navigates to the next image and executes the beforeChange and afterChange callback functions.

Example:

instance.next()

Options

The option object can include the following properties:

{
	/*
	 * Initial image.
	 */
	index: 0,
	/*
	 * Rotate image by dragging.
	 */
	draggable: true,
	/*
	 * Dragging tolerance.
	 * Small number (1) = Very sensitive = Fast.
	 * Large number (∞) = Very insensitive = Slow.
	 */
	tolerance: 10,
	/*
	 * Dragging direction.
	 * x (or basicRotate.DIRECTION_X) = Detect movements on the x-axis.
	 * y (or basicRotate.DIRECTION_Y) = Detect movements on the y-axis.
	 */
	index: 'x',
	/*
	 * Callback functions.
	 * Returning false will stop the caller function and prevent the image from changing.
	 */
	beforeChange: (instance, newIndex, oldIndex) => {},
	afterChange: (instance, newIndex, oldIndex) => {}
}