11 2017 档案
摘要:https://ustbhuangyi.github.io/better-scroll/doc/zh-hans/#better-scroll API文档地址 BetterScroll 是一款重点解决移动端各种滚动场景需求的开源插件( GitHub地址 ),适用于滚动列表、选择器、轮播图、索引列表、开
阅读全文
摘要:参数说明: startX: 0 开始的X轴位置 startY: 0 开始的Y轴位置 scrollY: true 滚动方向 click: true 是否启用click事件 directionLockThreshold: 5 momentum: true 是否开启动量动画,关闭可以提升效率 bounce
阅读全文
摘要:概况 概况 资料来源 iScroll基本信息 官网:http://cubiq.org/iscroll-4 更新:2012.07.14 版本:v4.2.5 兼容:iPhone/Ipod touch >=3.1.1, iPad >=3.2, Android >=1.6, Desktop Webkit,
阅读全文
摘要:<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> </head> <script src="js/jquery.js" type="text/javascript" charset="utf-8"></scri
阅读全文
摘要:Array.prototype.remove = function(val) { var index = this.indexOf(val); if(index > -1) { this.splice(index, 1); } }; var arr = ['1','2','3']; arr.remo
阅读全文