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

anima-picker

v1.0.4

Published

The best project ever.

Downloads

3

Readme

picker


选择器,模拟下拉选择器、转场选择,同时是虚拟键盘、日历控件等的基类


Usage

picker 继承 pop控件,所以支持pop控件的所有属性和方法,使用上更加简单,picker类是抽象类,所以一般需要直接使用的是 listPicker

配置项

继承了pop的所有的属性

element、x,y,width,height,zIndex,visible,effect,direction,duration,easing

自己特有的属性

trigger element

  • 触发显示的元素

textField element

  • 选择后显示文本的字段,一般是input,也可以是一般的DOM

valueField element

  • 选择后存放值的字段,一般是隐藏域

Api

show() 显示

hide() 隐藏

ListPicker 控件


列表选择器,模拟下拉选择器、转场选择列表


配置项

list Object

  • 列表的配置信息
  • 渲染后可以通过 picker.get('list')获取到列表对象

usage

<p id="p1">
  <label>选择框</label><input class="text" type="text"> <input type="hidden" class="value">
</p>
seajs.use('anima-picker', function(Picker) {
    var items = [{text:'选项1',value:'a'},{text:'选项2',value:'b'},{text:'选项3',value:'c'},{text:"数字值",value:3}],
      picker = new Picker.ListPicker({
        trigger : '#p1 .text',
        valueField : '#p1 .value',
        width : '100%',
        height : '50%',
        effect : 'slide', //滑出效果
        direction : 'up', //从下往上
        list : {
          className : 'am-list', //自定义列表class
          itemCls : 'am-list-item', //列表项的class
          items : items
        }
      });

    picker.render();
});