// 防止内容区域滚到底后引起页面整体的滚动var content = document.querySelector('main');var startY;content.addEventListener('touchstart', function (e) { startY = e.touc...
分类:
移动开发 时间:
2015-08-06 13:13:34
阅读次数:
134
就像QQ宠物或者迅雷悬浮窗口一样,鼠标点下去窗体跟着鼠标动主要是两个时间的加载MouseDown和MouseMove事件MouseDown事件:1 private int _StartX ;//鼠标点下去的坐标2 private int _StartY ;3 ...
分类:
其他好文 时间:
2015-07-21 14:32:48
阅读次数:
191
private?float?startx;
private?float?starty;
private?float?upoffset;
@Override
public?boolean?onTouchEvent(MotionEvent?event)?{
switch?(event.getAction())?{
case?MotionEvent.A...
分类:
移动开发 时间:
2015-06-24 13:07:57
阅读次数:
201
y@y:~$ sudo apt-get install nginxy@y:~$ sudo service nginx starty@y:~$ nginx默认使用80端口,打开浏览器输入:http://localhost/Welcome to nginx!If you see this page, t...
分类:
系统相关 时间:
2015-06-12 08:39:37
阅读次数:
171
拖拽与滑动一、概念介绍:1)拖拽:将组建从一个坐标移动到另一个坐标2)移动:从一二坐标点移动到另一个坐标点3)步长:从一点滑动到另一点使用的时间二、拖拽与滑动的相关API:返回值方法名描述booleandrag(int startX, int startY, int endX, int endY, ...
分类:
移动开发 时间:
2015-06-02 14:48:13
阅读次数:
471
var startX; //触摸起始横坐标var startY; //触摸起始纵坐标var moveSpave; //移动的距离var isMoveX = true; //判断是否为左右移动var isFirst = true; //是否要判断touchmove方向var beginTime=...
分类:
Web程序 时间:
2015-04-19 21:15:02
阅读次数:
189
首先在你的网页中建立一个样式,然后在把这个样式用在你的图片上。至于代码的意思请往下看!!! 也许你已经注意到了Alpha(Opacity=?, FinishOpacity=?, Style=?, StartX=?, StartY=?, FinishX=?, FinishY=?)这一段代码,里面有很....
分类:
Web程序 时间:
2015-04-07 17:23:40
阅读次数:
191
#include #define ROCK 1#define GOAL 3int map[30][30];int w,h;int dfsfind(int startx, int starty, int finx, int finy, int deep){ if (deep > 10) ret...
分类:
其他好文 时间:
2015-03-18 01:11:41
阅读次数:
135
今天写了一天这个jquery插件:可以实现对div进行拖拽来调整大小的功能。 1 (function ($) { 2 $.fn.dragDivResize = function () { 3 var deltaX, deltaY, _startX, _startY; ...
分类:
其他好文 时间:
2015-01-29 17:11:49
阅读次数:
217
书籍名称:HTML5-Animation-with-JavaScript书籍源码:https://github.com/lamberta/html5-animation1.获取像素数据,改变数据颜色获取像素是getImageData(startX,startY,endX,endY),将转换的像素数据...
分类:
其他好文 时间:
2015-01-27 14:51:49
阅读次数:
215