Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@figliolia/page-switch
Advanced tools
A slider animation library supporting
npm i @figliolia/page-switch
# or
yarn add @figliolia/page-switch
To create your slider, grab a reference to your container element or its ID and pass it to the PageSwitch
constructor with the options you want to use:
import { PageSwitch } from "@figliolia/page-switch";
const Switcher = new PageSwitch("<container element or ID>", {
duration: 750, // animation duration when scrolling or swiping
direction: 1, // Horizontal (0) or Vertical (1)
transition: "slide", // Which animation to use
start: 0, // Which index to display first
loop: true, // Whether your pages should loop or end when your last page is reached
mousewheel: true, // Whether to enable mouse wheel scrolling
mouse: true, // Whether to enable dragging with your mouse
arrowKey: true, // Whether to enable animating using your directional keys
autoplay: false // Whether to allow the slider to animate freely
ease: "linear" // The name of a built-in easing function or an easing function of your own
});
Upon creating your instance, the PageSwitch
class will take care of positioning your container and children elements so that they transition smoothly.
The PageSwitch
interface also provides a handful of public methods for you to more easily control your slider programmatically:
The play method will trigger the auto-play feature and begin transition between your pages in order using the interval
you passed as an option. This interval
can be adjusted on the fly by simply assigning it a new value:
const PW = new PageSwitch(/* options */);
PW.setInterval(5000);
The pause method will stop the auto-play feature when in use. It can be resumed again be calling the play()
method or by calling setInterval()
with a new value
Moves the slider to the previous slide
Moves the slider to the next slide
This method will pause all activity to the slider - including events invoked by dragging and scrolling
This method can be used to clean up your PageSwitch
instance
Appends new elements to your slider at the specified position. When omitting the index
parameter, the new element will be placed in the last position
Appends a new element to your slider in the zeroth position
Places a new element before the specified index
Places a new element after the specified index
Removes the child at the specified index
Sets the amount of time the slider should remain on any given page when using the auto-play feature. When setting the interval, the auto-play will begin running if not already. If you'd like to set the interval without beginning the auto play feature, you can assign the interval a new value using PageSwitch.interval = <your value>
Updates the easing function used to transition between slides. Valid built-in easing functions are:
To add your own custom easing functions, pass in any valid bezier easing function:
(t: number, b: number, c: number, d: number) => number
This method will allow you to swap animations on the fly for any reason - like if the browser resizes or a user prefers reduced motion. You may also pass in a transition function of your own if you wish to customize your PageSwitch
visuals. Transition functions work in accordance with the following syntax:
const myTransitionFN = (
currentPage: HTMLElement, // the currently visible page element
currentPosition: number, // the transition progress of the current element
nextPage?: HTMLElement, // the next element - either ahead or behind the current depending on the user's gesturing
nextPosition?: number // the transition progress of the next element
) => {
// Operations on your DOM elements
// To transition opacity, one might do the following:
currentPage.style.opacity = `${1 - Math.abs(currentPosition)}`;
if (nextPage) {
nextPage.style.opacity = `${Math.abs(currentPosition)}`;
}
};
In the above example, you may have noticed the reference check on the nextPage
element. For most sliders, which loop back to the first element when reaching the end, the nextPage
and nextPosition
parameters will never be undefined. However, if the user chooses to not set the loop
option to true
, transitioning beyond the last element is disabled and these parameters will be undefined
in these cases.
Your PageSwitch
instance will emit the following events allowing you to coordinate customized visual logic with PageSwitch's
internals:
An event fired the moment before a page transitions to the following page
const PW = new PageSwitch(/* options */);
PW.on("before", (currentIndex: number, nextIndex: number) => {
// Execute your logic!
});
An event fired immediately after a page transitions to the following page
const PW = new PageSwitch(/* options */);
PW.on("after", (currentIndex: number, previousIndex: number) => {
// Execute your logic!
});
An event fired on each frame containing each transition function parameter
const PW = new PageSwitch(/* options */);
PW.on("update", (
currentPage: HTMLElement,
currentPosition: number,
nextPage?: HTMLElement,
nextPosition?: number
) => {
// Create cool parallax effects!
// Keep in mind, this event will fire at 60 FPS
});
An event fired at the beginning of each drag
const PW = new PageSwitch(/* options */);
PW.on("dragStart", (event: DragEvent) => {
// Execute your logic
});
An event fired on each drag movement
const PW = new PageSwitch(/* options */);
PW.on("dragMove", (event: DragEvent) => {
// Execute your logic
});
An event fired on the end of each drag
const PW = new PageSwitch(/* options */);
PW.on("dragEnd", (event: DragEvent) => {
// Execute your logic
});
I'm sure the moment most readers have been waiting for. Here's a really cool demo created by the original author @qiqiboy.
If you're wondering why I decided to rewrite the original library please read on.
The author who created this library did so over ten years ago - dealing with all of the nuanced browser incompatibilities. In spite of this, it's one of the best open-source slider animation libraries in existence. The library never relied on JQuery or any other framework that may bloat its size - or would make standardizing it across browsers easier. The original author really knew his stuff.
Over time, there began to be some browser compatibility issues as certain legacy API's began to be phased out. Because the original author has since moved on, and I used this library in a ton of client websites and apps back in the day, I felt the desire to fix the incoming issues as well as try to modernize it a bit for new projects.
I've used this library with Svelte, React, Vue - just about every modern framework and it continues to hold up nicely. If you wish to check out the original, it can be found here..
FAQs
A page animation library based on the clever work of @qiqiboy
The npm package @figliolia/page-switch receives a total of 1 weekly downloads. As such, @figliolia/page-switch popularity was classified as not popular.
We found that @figliolia/page-switch demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.