您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. ios UIScrollView响应touch事件

  2. UIScrollView 响应touchEvent事件。 UIScollView的move与touchMove共存。
  3. 所属分类:iOS

    • 发布日期:2012-10-17
    • 文件大小:33792
    • 提供者:take8619702
  1. js触屏事件

  2. js触屏事件,用于支持手机上的touchstart,touchmove,touchend
  3. 所属分类:HTML5

    • 发布日期:2013-01-31
    • 文件大小:2048
    • 提供者:chendahaiweibo
  1. Pinch-emulator-for-Sencha-Touch-master

  2. sencha touch 缩放 demo Pinch emulator plugin for Sencha Touch Emulation of double touch pinch event for desktops. Can be useful for testing of pinch enabled components on desktop. Author: Constantine V. Smirnov, kostysh(at)gmail.com, http://mindsaur.c
  3. 所属分类:HTML5

    • 发布日期:2013-04-18
    • 文件大小:9437184
    • 提供者:omelasshell
  1. js左右滑屏

  2. js的左右滑动触屏事件(2012-01-20 08:55:53)转载▼标签: 移动设备触屏事件杂谈 分类: js js的左右滑动触屏事件,主要有三个事件:touchstart,touchmove,touchend。这三个事件最重要的属性是 pageX和 pageY,表示X,Y坐标。 touchstart在触摸开始时触发事件 touchend在触摸结束时触发事件 touchmove这个事件比较奇怪,按道理在触摸到过程中不断激发这个事件才对,但是在我的 Android 1.5 中,在 touchs
  3. 所属分类:Android

    • 发布日期:2013-06-27
    • 文件大小:1024
    • 提供者:xiaorongxr
  1. js左右滑动切换不同div代码,移动开发应用

  2. 搜了好久,没有找到合适的代码,自己写了一个。android和ios下测试通过! javascr ipt的左右滑动代码,纯js,没有用到jquery。简单实用,直接下载html页面放到服务器上运行即可。touchstart->touchmove->touchend 原理参照:http://www.cnblogs.com/pifoo/archive/2011/05/23/webkit-touch-event-1.html
  3. 所属分类:Android

    • 发布日期:2013-11-13
    • 文件大小:3072
    • 提供者:solo309824650
  1. jquery-1.7.1

  2. jquery-1.7.1.min.js 可以调用on()函数,很有用的。可以在touchmove的时候屏蔽touchend,这样就不会出现move完了还触发了其他事件。详情请见: http://www.cnblogs.com/MartinLi841538513/articles/3636883.html
  3. 所属分类:HTML5

    • 发布日期:2014-03-31
    • 文件大小:94208
    • 提供者:li841538513
  1. 手机页面触摸滑动

  2. 手机页面滑动提示,touchstart 、touchmove、touchend 的运用,简单展示
  3. 所属分类:HTML5

  1. 滑动出菜单

  2. 使用js,当鼠标滑动,滑出隐藏菜单 //通过参数获取class或者id 对象 var window_width = document.body.scrollWidth; var window_height = document.body.scrollHeight; var g=function(id){ if(id.substr(0,1)=='.') { return document.getElementsByClassName(id.substr(1)); } return documen
  3. 所属分类:HTML5

    • 发布日期:2015-12-01
    • 文件大小:5120
    • 提供者:sinat_18541247
  1. 长按拖动排序

  2. /* * 使用方法 **/ //- (void)viewDidLoad { // [super viewDidLoad]; // // Do any additional setup after loading the view. // self.view.backgroundColor = [UIColor grayColor]; // // StBtnTouchMove *stBtn = [[StBtnTouchMove alloc]initWithFrame:CGRectMake(0,
  3. 所属分类:iOS

    • 发布日期:2016-01-26
    • 文件大小:4096
    • 提供者:shawuer
  1. 手机移动端禁用滚动条,手机禁止滚动js

  2. 用到了手机端专用的touchmove事件等.保证可用.安卓上测试正常.用法举例:直接在html页面上引入函数禁止函数即可,例如. $(document).ready(function(){ fun123();//浏览器加载时直接运行禁用函数. })
  3. 所属分类:Javascript

    • 发布日期:2016-12-14
    • 文件大小:439
    • 提供者:viqecel
  1. html5 拼图

  2. 代码片段 //移动手指或鼠标触发事件 $(document).on("touchmove mousemove",function(e){ e.preventDefault(); //获取触发touchmove的对象 var getEvent = window.event || arguments.callee.caller.arguments[0]; if(getEvent.changedTouches){ if(getEvent.changedTouches.length == 1){//确
  3. 所属分类:HTML5

    • 发布日期:2017-03-03
    • 文件大小:611328
    • 提供者:qq_25407779
  1. jQuery手机端触屏滑动刻度尺选择数值代码

  2. setTimeout(function(){ var n =0; var u,end,start,g,g2; var w0 = 50; var w1 = 10.4; var w2=52; var heightVal =$("div[data-page='profile1']").find(".row").eq(1).find(".number").attr("initial-value&qu ot;); //150-140 var widthVal =$("div[data-page='pro
  3. 所属分类:HTML5

    • 发布日期:2017-11-08
    • 文件大小:39936
    • 提供者:gxy8023
  1. 微信小程序---列表页左滑删除(同时适用于安卓和ios)

  2. 微信小程序列表页的左滑动删除 1,首先页面每个item分为上下两层,上面一层放置正常内容,下面一层放置左滑显示出的按钮,这个可以使用z-index来实现分层。 2,item上层使用绝对定位,我们操纵 left 属性的值来实现像左移动。 3,我们通过微信小程序api提供的touch对象和3个有关手指触摸的函数(touchstart,touchmove,touchend)来实现item随手指移动。
  3. 所属分类:Javascript

    • 发布日期:2018-03-27
    • 文件大小:26624
    • 提供者:qq_38032300
  1. iscroll上拉或下拉完整js代码

  2. 适用于上拉加载或下拉刷新,里面有完整的代码。 document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);
  3. 所属分类:HTML5

    • 发布日期:2018-06-22
    • 文件大小:560128
    • 提供者:cqliaojing
  1. angular touchmove滑动定位

  2. 修改ngTouch模块并参考网上资料,支持实时获取touch dom,以实现菜单栏滑动定位 附回调函数代码: var touch = $scope.$event.changedTouches[0]; var dom = document.elementFromPoint(touch.clientX, touch.clientY); $location.hash(dom.dataset.id ? dom.dataset.id : ""); $anchorScroll();
  3. 所属分类:HTML5

    • 发布日期:2018-06-23
    • 文件大小:765
    • 提供者:zengfanhao0432
  1. Sortable前端框架

  2. # Sortable Sortable is a minimalist Javascr ipt library for reorderable drag-and-drop lists. Demo: http://rubaxa.github.io/Sortable/ ## Features * Supports touch devices and [modern](http://caniuse.com/#search=drag) browsers (including IE9) * Can dr
  3. 所属分类:Web开发

    • 发布日期:2018-06-28
    • 文件大小:84992
    • 提供者:qq123211858
  1. 3d 云标签,支持mousemove touchmove自有惯性滚动

  2. 3d 云标签,支持mousemove touchmove自有惯性滚动。
  3. 所属分类:Javascript

    • 发布日期:2019-01-24
    • 文件大小:6144
    • 提供者:nksurvive
  1. TouchMove.vue

  2. 自己封装的微信小程序拖动窗口组件.
  3. 所属分类:Web开发

    • 发布日期:2020-07-15
    • 文件大小:4096
    • 提供者:sunyv1
  1. HTML5实战与剖析之触摸事件(touchstart、touchmove和touchend)

  2. 本文主要介绍HTML5实战与剖析之触摸事件,介绍的比较详细,需要的朋友可以参考下。
  3. 所属分类:其它

    • 发布日期:2020-10-22
    • 文件大小:72704
    • 提供者:weixin_38674223
  1. HTML5触摸事件(touchstart、touchmove和touchend)的实现

  2. HTML5中新添加了很多事件,但是由于他们的兼容问题不是很理想,应用实战性不是太强,所以在这里基本省略,咱们只分享应用广泛兼容不错的事件,日后随着兼容情况提升以后再陆续添加分享。今天为大家介绍的事件主要是触摸事件:touchstart、touchmove和touchend。 一开始触摸事件touchstart、touchmove和touchend是iOS版Safari浏览器为了向开发人员传达一些信息新添加的事件。因为iOs设备既没有鼠标也没有键盘,所以在为移动Safari浏览器开发交互性网页的时
  3. 所属分类:其它

    • 发布日期:2020-11-20
    • 文件大小:62464
    • 提供者:weixin_38563552
« 12 3 4 5 6 »