的tap事件。tap事件可以理解為在移動端的click事件,而zepto.js因為幾乎完全複製jquery的api,因此常常被用在h5的開發上用來取代jquery.
src='/path/to/fastclick.js'>
script>
if ('addeventlistener'
indocument) , false);
}
$(function() );
var attachfastclick = require('fastclick');
attachfastclick(document.body);
var fastclick = require('fastclick');
fastclick.attach(document.body, options);
$area.on('click', '.weeknumber', function() )
// 實現左右滑動
$area.on('touchstart', function() {})
.on('touchmove', function() {})
.on('touchend', function() {})
// 實現滑動的大概**
// 滑動元素translatex的初始值
var iscroll = device_width,
// 用來計算的中間值
istarx = 0,
// 手指第一次點在螢幕上的x座標
istart_pagex = 0;
// 繫結事件
$area.on('touchstart', touchstart)
.on('touchmove', touchmove)
.on('touchend', touchend);
function
touchstart(event)
function
touchmove(event) );
}function
touchend(event) )
}else
if (distance > 80) )
}else
if (distance == 0)
else , function() )
}}
$area.on('tap', function() {});
$area.tap(function() {})
js 解決移動端點選事件的延遲問題
眾所周知,在手機上的點選事件會有延遲300ms的問題。但在做手機端某些點選小遊戲時,我們就需要取消這個延遲的問題 第一步 禁止頁面的縮放 這塊內容能解決一些部分手機的問題 第二步 fastclick.js fastclick 是 ft labs 專門為解決移動端瀏覽器 300 毫秒點選延遲問題所開發...
入侵區域網的全攻略
首先申明 1.入侵 的範圍只包括區域網,如果在學校上,可以 入侵整個校園網 2.能入侵的只是存在弱口令 使用者名為administrator等,密碼為空 並且開了139埠,但沒開防火牆的機子。入侵工具 一般要用到三個 ntscan 掃瞄器,recton d賀免殺專用版,dameware迷你中文版 4...
最後的瘋狂 Linux產品完全攻略
相信大家在日常生活中接觸最多的作業系統當然是微軟的windows,而對於linux這個新興系統,我們所聽說的也只是除了平台完全免費以外,在該平台上開發的各款軟體也不會收取任何的費用,這在當時對大多數使用者來說無疑是異想天開的故事,報紙網路對其進行長篇累牘的報道,而當時只要是稍懂電腦的使用者聚在一起所...