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

@axe/slideshow

v0.1.8

Published

A library created by fle-cli.

Downloads

5

Readme

slideshow

version

Api

new Slideshow(options)

options

  • el: element|string, 轮播容器
  • list: array, 轮播子节点
  • initIndex: 0, 初始化位置索引
  • seamless: true, 是否开启无限滚动(头尾相接)
  • limitDistince: this.width / 2, 切换索引的最小滑动距离,默认是当前宽度的一半
  • limitSpeed: 0.2, 切换索引的最小滑动速度,距离和速度满足任意一个即可以切换
  • autoplay: 3000, 设置自动轮播时间,若为0则不进行自动轮播
  • autoloop: false, 是否循环轮播,即滑动到头尾就朝反方向滑动
  • indicator: true, 是否显示索引指示器
  • indicatorClass: 自定义指示器样式
    • list: 列表样式
    • item: 圆点样式
    • itemActive: 激活状态圆点样式
  • preventDefault: true, 是否阻止默认事件
  • transition: 过渡动画设置
    • duration: 500, 过渡时间
    • timingFunction: 'cubic-bezier(0.25, 0.46, 0.45, 0.94)', 过渡曲线
  • onchange: null, 索引改变触发的方法,参数是当前的索引(index)

备注:组件会根据el的宽度和list的长度自动计算滑动的宽度,list的项可以是DOM节点、html或object {img, url}

slideshow.changeIndex(n)

改变索引,若想切换下一页,则n = 1;若想切换上一页,则n = -1。

Build Setup

# serve with hot reload at localhost:5000
fle dev

# build for production with minification
fle build

For detailed explanation, consult the docs for fle-cli.