pushbutton 移动端弹出列表选择框

移动端从下往上推动画效果端弹出列表选择框,适应所有主流移动端机型,支持Node引入,require引入;如有用得不爽可以随时提意见,谢谢。

demo地址: https://gtdalp.github.io/widg...

github地址:https://github.com/gtdalp/pus...

npm安装

npm install pushbuttonjs
使用方法如下:

1、html结构

<section id="pushbutton"></section>
2、需要引入的js

<script src="../src/jslib/zepto.min.js"></script> <script src="../build/pushbutton.min.js"></script>
3、调用

new Pushbutton('#pushbutton', {

data: [
{text:'拍照', cls: 'photo', attr: {'data-key': 'photo'} },
{text:'录像', attr: [
{key1: 'video2'},
{key2: 'video2'}
]},
{text:'语音录入'}
], // 点击回调 返回true 则不隐藏弹出框 onClick: function( e ) { console.log(e); // 返回主要有用数据 // e.target 当前dom节点 // e.data 当前点击的data // e.index 当前点击的选择是第几个 return true;
}, // maxHeight: 100, // 默认显示的高度 isShow: true // 默认是否显示 }); var dom = document.getElementById("pushbuttonClick"); var refresh = document.getElementById("refresh"); dom.onclick = function () { pub.show();

} refresh.onclick = function () { pub.refresh({

    data: [{text: '1321321321'}]
});

}
效果图 demo1.png

4、API

4.1 options.data 数据

options.data = [

{text:'拍照', cls: 'photo', attr: {'data-key': 'photo'} },
{text:'录像', attr: [
{key1: 'video2'},
{key2: 'video2'}
]},
{text:'语音录入'}

]

4.2 options.onClick 点击回调 返回true 则不隐藏弹出框

options.onClick = function( e ) { console.log(e); // 返回主要有用数据 // e.target 当前dom节点 // e.data 当前点击的data // e.index 当前点击的选择是第几个 return true;
}
4.3 maxHeight 默认显示的高度

options.maxHeight = 100 // 默认显示的高度
4.4 isShow 默认是否显示

options.isShow = false // 默认是否显示 默认不显示
4.5 show 显示

Pushbutton.show() // 显示
4.6 hide 隐藏

Pushbutton.hide() // 隐藏
4.7 refresh 刷新

Pushbutton.refresh({

.. // options 可以传options }) // 刷新

最新文章

  1. 思达index网站
  2. wordpress如何批量关闭旧日志留言功能
  3. linux云主机怎么安装WDCP
  4. HDU 4045 Machine scheduling --第二类Strling数
  5. pm 2.5
  6. (整理)FORM:Oracle EBS客制化Form的菜单栏用法说明
  7. Mysql 索引的基础(上)
  8. flask-script 安装问题
  9. 去除express.js 3.5中报connect.multipart() will be removed in connect 3.0的警告
  10. 深入React组件生命周期
  11. Docker- 创建支持SSH服务的容器镜像
  12. Nuget安装nupkg文件
  13. PHP判断客户端是否使用代理服务器及其匿名级别
  14. SpringCloud第二弹(高可用Eureka+Ribbon负载均衡)
  15. orz gzy
  16. spring入门——applicationContext与BeanFactory的区别
  17. 进阶系列(10)—— C#元数据和动态编程
  18. Linux内核编译技巧
  19. mongodb-脏数据问题
  20. conda与pip的关系

热门文章

  1. MongoDB创建普通账户与admin账户的配置方法
  2. C# 爬取图片
  3. LeetCode-007-整数反转
  4. LeetCode-103-二叉树的锯齿形层序遍历
  5. 引入的ip地址,打包以后可以随意更改
  6. (八)使用 jmh 压测 Dubbo
  7. 矩池云 | 使用LightGBM来预测分子属性
  8. c++11 实现枚举值到枚举名的转换
  9. 同步a表的数据到 b表
  10. php pdf添加水印(中文水印,图片水印)