var starty=0;//触摸开始var movey=0;//触摸结束var ends=0;//计算结果divs.addEventListener("touchstart", function(e) { var touch = e.touches[0]; //获取第一个触点 starty = N ...
分类:
其他好文 时间:
2018-03-19 13:30:37
阅读次数:
185
Options 参数 startX: 0 开始的X轴位置 startY: 0 开始的Y轴位置 scrollY: true 滚动方向为 Y 轴 scrollX: true 滚动方向为 X 轴 click: true 是否派发click事件,通常判断浏览器派发的click还是betterscroll派发 ...
分类:
其他好文 时间:
2018-03-13 00:55:16
阅读次数:
813
不同的项目总是要求不同的需求 wxml: <canvas canvas-id="myCanvas" class="myCanvas" disable-scroll="false" bindtouchstart="touchStart" bindtouchmove="touchMove" bindto ...
分类:
其他好文 时间:
2018-02-11 12:25:33
阅读次数:
360
样式好看,但是找不到api 赋值:$("#id").val("2081-1-1"); 链接:https://pan.baidu.com/s/1qZdJ2H2 密码:mg4w ...
分类:
其他好文 时间:
2018-02-05 14:23:29
阅读次数:
129
一 CSS文字属性:color : #999999; /*文字颜色*/font-family : 宋体,sans-serif; /*文字字体*/font-size : 9pt; /*文字大小*/font-style:itelic; /*文字斜体*/font-variant:small-caps; / ...
分类:
Web程序 时间:
2018-01-24 19:40:47
阅读次数:
250
pathview由model 、delegate、path三部分组成。Path的startX、startY用于描述路径的起点,而pathElements是个路径元素的列表,常见的路径元素有PathLine(直线) athQuad(赛贝尔二次曲线)、 PathCubic(赛贝尔三次曲线)、PathAr ...
分类:
其他好文 时间:
2018-01-08 20:15:30
阅读次数:
227
DateTime dt = DateTime.Now; //当前时间 DateTime startWeek = dt.AddDays(1 - Convert.ToInt32(dt.DayOfWeek.ToString("d"))); //本周周一 DateTime endWeek = startWe ...
$("body").on("touchstart", function(e) { e.preventDefault(); startX = e.originalEvent.changedTouches[0].pageX, startY = e.originalEvent.changedTouches... ...
分类:
其他好文 时间:
2017-11-10 18:29:14
阅读次数:
171
参数说明: startX: 0 开始的X轴位置 startY: 0 开始的Y轴位置 scrollY: true 滚动方向 click: true 是否启用click事件 directionLockThreshold: 5 momentum: true 是否开启动量动画,关闭可以提升效率 bounce ...
分类:
其他好文 时间:
2017-11-03 15:15:17
阅读次数:
3100
var startx, starty; //获得角度 function getAngle(angx, angy) { return Math.atan2(angy, angx) * 180 / Math.PI; }; //根据起点终点返回方向 1向上 2向下 3向左 4向右 0未滑动 functio ...
分类:
移动开发 时间:
2017-10-31 16:52:53
阅读次数:
286