Dokunmayı algılamaya çalışan en büyük "gotcha", hem dokunmayı hem de izleme dörtgenini / fareyi destekleyen hibrit cihazlarda. Kullanıcının cihazının dokunmayı destekleyip desteklemediğini doğru bir şekilde tespit edebilseniz bile, gerçekten yapmanız gereken kullanıcının şu anda hangi giriş cihazını kullandığını tespit etmektir . Bu zorluğun ayrıntılı bir yazımı ve burada olası bir çözüm var .
Bir kullanıcı sadece ekranı dokundu veya bir fare / dokunmatik yerine a hem kayıt olup kullanılan yetip için Temelde yaklaşım touchstart
ve mouseover
sayfasından etkinliğe:
document.addEventListener('touchstart', functionref, false) // on user tap, "touchstart" fires first
document.addEventListener('mouseover', functionref, false) // followed by mouse event, ie: "mouseover"
Dokunma eylemi bu olayların her ikisini de tetikleyecektir, ancak eski ( touchstart
) her zaman çoğu cihazda ilk sıradadır. Bu öngörülebilir olay dizisine güvenerek , kullanıcının şu anda belgedeki geçerli giriş türünü can-touch
yansıtmak için belge köküne dinamik olarak bir sınıf ekleyen veya kaldıran bir mekanizma oluşturabilirsiniz :
;(function(){
var isTouch = false //var to indicate current input type (is touch versus no touch)
var isTouchTimer
var curRootClass = '' //var indicating current document root class ("can-touch" or "")
function addtouchclass(e){
clearTimeout(isTouchTimer)
isTouch = true
if (curRootClass != 'can-touch'){ //add "can-touch' class if it's not already present
curRootClass = 'can-touch'
document.documentElement.classList.add(curRootClass)
}
isTouchTimer = setTimeout(function(){isTouch = false}, 500) //maintain "istouch" state for 500ms so removetouchclass doesn't get fired immediately following a touch event
}
function removetouchclass(e){
if (!isTouch && curRootClass == 'can-touch'){ //remove 'can-touch' class if not triggered by a touch event and class is present
isTouch = false
curRootClass = ''
document.documentElement.classList.remove('can-touch')
}
}
document.addEventListener('touchstart', addtouchclass, false) //this event only gets called when input type is touch
document.addEventListener('mouseover', removetouchclass, false) //this event gets called when input type is everything from touch to mouse/ trackpad
})();
Daha fazla ayrıntı burada .