您好,登錄后才能下訂單哦!
這篇文章主要介紹了在html5中如何實(shí)現(xiàn)長(zhǎng)按事件效果的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇在html5中如何實(shí)現(xiàn)長(zhǎng)按事件效果文章都會(huì)有所收獲,下面我們一起來看看吧。
最近接了個(gè)需求,要求長(zhǎng)按某個(gè)標(biāo)簽顯示刪除一個(gè)懸浮的刪除按鈕。這個(gè)需求其實(shí)在app上很常見,但是在移動(dòng)端h6中,我們沒有長(zhǎng)按的事件,所以就需要自己模擬這個(gè)事件了。
ps: 為了做個(gè) gif 還下了 app ,還得通過郵件發(fā)到電腦上,腦瓜疼。。
思路
放棄click
事件,通過判斷按的時(shí)長(zhǎng)來決定是單擊還是長(zhǎng)按
使用touchstart
和touchend
事件
在touchstart中開啟一個(gè)定時(shí)器,比如在 700ms 后顯示一個(gè)長(zhǎng)按菜單
在touchend中清除這個(gè)定時(shí)器,這樣如果按下的時(shí)間超過700ms,那么長(zhǎng)按菜單已經(jīng)顯示出來了,清除定時(shí)器不會(huì)有任何影響;如果按下的時(shí)間小于 700ms,那么 touchstart
中的長(zhǎng)按菜單還沒來得及顯示出來,就被清除了。
由此我們可以實(shí)現(xiàn)模擬的長(zhǎng)按事件了。
上代碼
請(qǐng)把重點(diǎn)放在JS上,這里貼出來完整的代碼是為了方便大家看個(gè)仔細(xì),代碼可以拷貝直接看效果
css中大部分只是做了樣式的美化,還有一開始讓刪除按鈕隱藏起來
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="./longpress.css" />
</head>
<body>
<div class="container">
<div class="label" id="label">長(zhǎng)按我</div>
<div class="delete_btn">刪除</div>
</div>
<script src="./longpress.js"></script>
</body>
</html>
JS
let timer = null
let startTime = ''
let endTime = ''
const label = document.querySelector('.label')
const deleteBtn = document.querySelector('.delete_btn')
label.addEventListener('touchstart', function () {
startTime = +new Date()
timer = setTimeout(function () {
deleteBtn.style.display = 'block'
}, 700)
})
label.addEventListener('touchend', function () {
endTime = +new Date()
clearTimeout(timer)
if (endTime - startTime < 700) {
// 處理點(diǎn)擊事件
label.classList.add('selected')
}
})
CSS
.container {
position: relative;
display: inline-block;
margin-top: 50px;
}
.label {
display: inline-block;
box-sizing: border-box;
width: 105px;
height: 32px;
line-height: 32px;
background-color: #F2F2F2;
color: #5F5F5F;
text-align: center;
border-radius: 3px;
font-size: 14px;
}
.label.selected {
background-color: #4180cc;
color: white;
}
.delete_btn {
display: none;
position: absolute;
top: -8px;
left: 50%;
transform: translateX(-50%) translateY(-100%);
color: white;
padding: 10px 16px;
background-color: rgba(0, 0, 0, .7);
border-radius: 6px;
line-height: 1;
white-space: nowrap;
font-size: 12px;
}
.delete_btn::after {
content: '';
width: 0;
height: 0;
border-width: 5px;
border-style: solid;
border-color: rgba(0, 0, 0, .7) transparent transparent transparent;
position: absolute;
bottom: -9px;
left: 50%;
transform: translateX(-50%);
}
ps: touchstart
和touchend
只有在移動(dòng)端設(shè)備上才有用,如果要看代碼示例的話請(qǐng):
用 chrome
F12打開調(diào)時(shí)窗
切換到模擬移動(dòng)設(shè)備
關(guān)于“在html5中如何實(shí)現(xiàn)長(zhǎng)按事件效果”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“在html5中如何實(shí)現(xiàn)長(zhǎng)按事件效果”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。