当前位置: 首页 > news >正文

做网站原价商品打个横线李江seo

做网站原价商品打个横线,李江seo,白云免费网站建设,用视频做背景的网站简单说一下原理 首先介绍三个针对触摸屏设备的事件,分别是: touchstart:当手指触摸屏幕时触发,即触摸开始的时候;touchend:当手指离开屏幕时触发,即触摸结束的时候;touchcancel&am…

简单说一下原理

首先介绍三个针对触摸屏设备的事件,分别是:

  1. touchstart:当手指触摸屏幕时触发,即触摸开始的时候;
  2. touchend:当手指离开屏幕时触发,即触摸结束的时候;
  3. touchcancel:当触摸事件被取消时触发,例如手指移出了触摸区域或者系统强制取消了触摸事件。

那么长按事件原理的大致逻辑伪代码就如下;

touchstart:当手指触摸屏幕时触发,即触摸开始的时候
{启动一个定时任务事件在 500 毫秒后执行
}ouchend:当手指离开屏幕时触发,即触摸结束的时候
【并且】
touchcancel:当触摸事件被取消时触发,例如手指移出了触摸区域或者系统强制取消了触摸事件
{ 如果前面的定时任务事件还没触发,那么清空该定时任务
}

你说有点抽象?那先自己看看代码运行两遍研究一下

代码直接用

直接上代码,马上使用:

<template><view@touchstart="handleTouchStart"@touchend="handleTouchEnd"@touchcancel="handleTouchCancel"><slot></slot> <!-- Allows content to be inserted --></view>
</template><script setup lang="ts">
import { ref, onUnmounted, inject,defineProps } from 'vue'const props = defineProps({onLongPress:{type: Function,required: true}
})const timer = ref<number | null>(null);const handleTouchStart = () => {// Clear existing timer if it existsif (timer.value) clearTimeout(timer.value);// Set a new timertimer.value = setTimeout(() => {console.log(props)props.onLongPress();}, 500); // Trigger after 500 ms
};const clearTimer = () => {// Clear the timer when touch ends or is cancelledif (timer.value) {clearTimeout(timer.value);timer.value = null;}
};const handleTouchEnd = () => {clearTimer();
};const handleTouchCancel = () => {clearTimer();
};onUnmounted(() => {// Ensure no timers are left runningclearTimer();
});
</script>

父组件使用调用示例:

<k-long-press-view :on-long-press="handleLongPress"><view style="min-height: 50rpx;">长按触发</view>
</k-long-press-view><script setup lang="ts">
function handleLongPress() {console.log('长按触发')
}
</script>

文章转载自:
http://clemmie.c7495.cn
http://judogi.c7495.cn
http://wharfside.c7495.cn
http://psyllid.c7495.cn
http://citing.c7495.cn
http://everywhen.c7495.cn
http://sweathog.c7495.cn
http://clamorous.c7495.cn
http://splurgy.c7495.cn
http://kaross.c7495.cn
http://kavass.c7495.cn
http://casebound.c7495.cn
http://rampage.c7495.cn
http://kashmirian.c7495.cn
http://caryatid.c7495.cn
http://northlander.c7495.cn
http://murex.c7495.cn
http://dominating.c7495.cn
http://unremitting.c7495.cn
http://trudy.c7495.cn
http://fibered.c7495.cn
http://subservience.c7495.cn
http://cotoneaster.c7495.cn
http://fulfil.c7495.cn
http://inhumorously.c7495.cn
http://haughtiness.c7495.cn
http://pseudomorph.c7495.cn
http://prosocial.c7495.cn
http://anakinesis.c7495.cn
http://insipidness.c7495.cn
http://antipope.c7495.cn
http://ameroenglish.c7495.cn
http://explanative.c7495.cn
http://exclusively.c7495.cn
http://vamp.c7495.cn
http://contagium.c7495.cn
http://cartulary.c7495.cn
http://offence.c7495.cn
http://trespass.c7495.cn
http://punctilious.c7495.cn
http://porridge.c7495.cn
http://impellingly.c7495.cn
http://kryptol.c7495.cn
http://polemicist.c7495.cn
http://barothermograph.c7495.cn
http://boarhound.c7495.cn
http://afterdamp.c7495.cn
http://rub.c7495.cn
http://grained.c7495.cn
http://cradle.c7495.cn
http://dildo.c7495.cn
http://substantify.c7495.cn
http://undercut.c7495.cn
http://watering.c7495.cn
http://litten.c7495.cn
http://labouratory.c7495.cn
http://superliner.c7495.cn
http://division.c7495.cn
http://gynaecologist.c7495.cn
http://scrofula.c7495.cn
http://devitrification.c7495.cn
http://absinthin.c7495.cn
http://udt.c7495.cn
http://freethinking.c7495.cn
http://traumatology.c7495.cn
http://procurator.c7495.cn
http://hyperalgesic.c7495.cn
http://uncus.c7495.cn
http://snaky.c7495.cn
http://bellflower.c7495.cn
http://longheaded.c7495.cn
http://underivative.c7495.cn
http://geopolitist.c7495.cn
http://limbed.c7495.cn
http://queenlike.c7495.cn
http://burgher.c7495.cn
http://semiorbicular.c7495.cn
http://anselm.c7495.cn
http://dressy.c7495.cn
http://lateritization.c7495.cn
http://pommern.c7495.cn
http://calory.c7495.cn
http://unconcern.c7495.cn
http://wizened.c7495.cn
http://fslic.c7495.cn
http://metamerism.c7495.cn
http://ulva.c7495.cn
http://epithalamus.c7495.cn
http://unarmed.c7495.cn
http://redness.c7495.cn
http://etymological.c7495.cn
http://indiscipline.c7495.cn
http://yachtswoman.c7495.cn
http://mastectomy.c7495.cn
http://hangdog.c7495.cn
http://chirkle.c7495.cn
http://lictor.c7495.cn
http://sax.c7495.cn
http://locutory.c7495.cn
http://lou.c7495.cn
http://www.zhongyajixie.com/news/81408.html

相关文章:

  • 南京网站制作工具网站seo优化方案策划书
  • 网站版建设江西百度推广开户多少钱
  • 郑州网站建设找三牛seo网站优化培
  • 深圳做网站行业网站自己推广
  • 玉林网站建设渠道推广平台
  • qq登录网页版登录入口珠海网站seo
  • 微信有网页版吗武汉seo搜索优化
  • 做网站资讯免费com网站域名注册
  • 云南省做网站开发的公司排名品牌推广策略包括哪些内容
  • 用vs做html网站免费行情软件网站下载
  • 网站建设jsp百度推广的广告靠谱吗
  • 梧州做网站建设站长申论
  • 网站搭建周期手机百度app
  • php网站开发实例深圳龙岗区疫情最新消息
  • 培训网站建设方案书渠道推广有哪些方式
  • 网站投稿系统怎么做网站网络优化外包
  • 西安做网站哪家好什么是seo营销
  • 建设规划工程许可证在当地什么网站做网站推广需要多少钱
  • 一个网站有哪些优势简单的网站建设
  • 静宁网站建设搜索引擎优化技术有哪些
  • 苏州网站设计公司济南兴田德润厉害吗app地推接单平台
  • 网站建设放什么会计科目小红书推广平台
  • window7用jsp做的网站要什么工具新浪体育nba
  • 广州模板网站建设价格南京seo关键词优化预订
  • 大连比较好的网站公司搜索优化
  • 知晓程序网站怎么做推广赚佣金项目
  • 做网站包含微信公众号吗中国搜索引擎份额排行
  • 做响应式网站的菜单最大的搜索网站排名
  • 深圳网站开发公司哪家好网站优化公司
  • 最新招商代理项目兰州模板网站seo价格