
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Slider manager focused on animation, forked by slider-manager by Baptiste Briel
Simple wrapper to create sliders focused on animations.
This project is a fork of slider-manager originally created by Baptiste Briel.
Prerequisites: Node.js (>=4.x, 6.x preferred) and Git.
Using yarn:
yarn add slideer
Using npm:
npm install slideer --save`
import Slideer from 'slideer'
import gsap from 'gsap'
const slideWrap = document.getElementById('#slider')
const slides = Array.from(slideWrap.querySelectorAll('.slides'))
const slider = new Slideer(slideWrap, {
length: slides.length,
loop: true,
callback: (event) => {
const index = event.current // array index
const previous = event.previous // array index
const direction = event.direction // +1 for next, -1 for prev
slider.animating = true
const windowWidth = window.innerWidth
const tl = new TimelineMax({ paused: true, onComplete: () => {
slider.animating = false
}})
tl.staggerTo(slides, 1, { cycle: {
y: (loop) => index === loop ? 0 : windowWidth * direction
}, ease: Expo.easeInOut}, 0, 0)
tl.restart()
}
})
// remember to initialize slider
slider.init()
// if you have pagination buttons
const prevControl = document.querySelector('.btn-prev')
const nextControl = document.querySelector('.btn-next')
// automatic check for loop or limit reached
prevControl.addEventListener('click', slider.goTo.call(slider, slider.getCurrentSlide() - 1), false)
nextControl.addEventListener('click', slider.goTo.call(slider, slider.getCurrentSlide() + 1), false)
el: slider wrapper element to attach swipe eventloop: true of falsedelta: delta limiter for swipe eventscallback: function called when user has swiped or scrolledinit: add event listenersgetCurrentIndex: get current slide indexgoTo(index): goes to the slide indexdestroy: remove event listenersClone this repo:
git clone git://github.com/liqueflies/slideer.git
From project root:
npm run start: run project on http://localhost:3100 with BrowserSyncnpm run bundle: compile projectnpm run build: uglify projectTests will be available soon.
MIT, see LICENSE.md for details.
FAQs
Slider manager focused on animation, forked by slider-manager by Baptiste Briel
The npm package slideer receives a total of 8 weekly downloads. As such, slideer popularity was classified as not popular.
We found that slideer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.