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

推广网站wap端怎么做企业品牌网站营销

推广网站wap端怎么做,企业品牌网站营销,怎样开发自己的app,北京网站制作开发公司振动 说明: 开发前请熟悉鸿蒙开发指导文档:gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md点击或者复制转到。 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 导入模块 imp…

振动

说明:
开发前请熟悉鸿蒙开发指导文档gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md点击或者复制转到。
本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

导入模块

import vibrator from '@ohos.vibrator';

vibrator.vibrate

vibrate(duration: number): Promise

按照指定持续时间触发马达振动。

权限列表:ohos.permission.VIBRATE,该权限为系统权限

系统能力:SystemCapability.Sensors.MiscDevice

参数:

参数名类型必填说明
durationnumber指示马达振动的持续时间。

返回值:

类型说明
Promise指示触发振动是否成功。

示例:

vibrator.vibrate(1000).then(()=>{console.log("Promise returned to indicate a successful vibration.");
}, (error)=>{console.log("error.code"+error.code+"error.message"+error.message);
});

vibrator.vibrate

vibrate(duration: number, callback?: AsyncCallback): void

按照指定持续时间触发马达振动。

权限列表:ohos.permission.VIBRATE,该权限为系统权限

系统能力:SystemCapability.Sensors.MiscDevice

参数:

参数名类型必填说明
durationnumber指示马达振动的持续时间。
callbackAsyncCallback马达执行振动的回调函数,指示触发振动是否成功。

示例:

vibrator.vibrate(1000,function(error){if(error){console.log("error.code"+error.code+"error.message"+error.message);}else{console.log("Callback returned to indicate a successful vibration.");}
})

vibrator.vibrate

vibrate(effectId: EffectId): Promise

按照指定振动效果触发马达振动。

权限列表:ohos.permission.VIBRATE,该权限为系统权限

系统能力:SystemCapability.Sensors.MiscDevice

参数:

参数名类型必填说明
effectId[EffectId]指示马达振动效果的字符串。

返回值:

类型说明
Promise指示触发振动是否成功。

示例:

vibrator.vibrate(vibrator.EffectId.EFFECT_CLOCK_TIMER).then(()=>{console.log("Promise returned to indicate a successful vibration.");
}, (error)=>{console.log("error.code"+error.code+"error.message"+error.message);
});

vibrator.vibrate

vibrate(effectId: EffectId, callback?: AsyncCallback): void

按照指定振动效果触发马达振动。

权限列表:ohos.permission.VIBRATE,该权限为系统权限

系统能力:SystemCapability.Sensors.MiscDevice

参数:

参数名类型必填说明
effectId[EffectId]指示马达振动效果的字符串。
callbackAsyncCallback马达执行振动的回调函数,指示触发振动是否成功。

示例:

vibrator.vibrate(vibrator.EffectId.EFFECT_CLOCK_TIMER, function(error){if(error){console.log("error.code"+error.code+"error.message"+error.message);}else{console.log("Callback returned to indicate a successful vibration.");}
})

vibrator.stop

stop(stopMode: VibratorStopMode): Promise

按照要停止指定的振动模式来停止马达的振动。如果要停止的振动模式与触发马达振动时的模式不相同,则调用本接口会失败。

权限列表:ohos.permission.VIBRATE,该权限为系统权限

系统能力:SystemCapability.Sensors.MiscDevice

参数:

参数名类型必填说明
stopMode[VibratorStopMode]指示马达要停止指定的振动模式。

返回值:

类型说明
Promise指示停止振动是否成功。

示例:

vibrator.stop(vibrator.VibratorStopMode.VIBRATOR_STOP_MODE_PRESET).then(()=>{console.log("Promise returned to indicate a successful vibration.");
}, (error)=>{console.log("error.code"+error.code+"error.message"+error.message);
});

vibrator.stop

stop(stopMode: VibratorStopMode, callback?: AsyncCallback): void;

按照要停止指定的振动模式来停止马达的振动。如果要停止的振动模式与触发马达振动时的模式不相同,则调用本接口会失败。

权限列表:ohos.permission.VIBRATE,该权限为系统权限

系统能力:SystemCapability.Sensors.MiscDevice

参数:

参数名类型必填说明
stopMode[VibratorStopMode]指示马达要停止指定的振动模式。
callbackAsyncCallback马达停止振动的回调函数,指示停止振动是否成功。

示例:

vibrator.stop(vibrator.VibratorStopMode.VIBRATOR_STOP_MODE_PRESET, function(error){if(error){console.log("error.code"+error.code+"error.message"+error.message);}else{console.log("Callback returned to indicate successful.");}
})

EffectId

表示马达振动效果的字符串。

系统能力:以下各项对应的系统能力均为SystemCapability.Sensors.MiscDevice

名称默认值说明 HarmonyOS与OpenHarmony鸿蒙文档籽料:mau123789是v直接拿
EFFECT_CLOCK_TIMER“haptic.clock.timer”调整定时器时振动器的振动效果。

搜狗高速浏览器截图20240326151450.png

VibratorStopMode

表示马达要停止指定的振动模式。

系统能力:以下各项对应的系统能力均为SystemCapability.Sensors.MiscDevice

名称默认值说明
VIBRATOR_STOP_MODE_TIME“time”停止模式为duration模式的振动。即触发振动时参数类型为number,参数本身为指示振动持续时间的触发方式。
VIBRATOR_STOP_MODE_PRESET“preset”停止模式为预置EffectId的振动。即触发振动时参数类型为EffectId,参数本身为指示马达振动效果的字符串的触发方式。

文章转载自:
http://tamarisk.rywn.cn
http://kunzite.rywn.cn
http://supererogatory.rywn.cn
http://patriate.rywn.cn
http://quadplex.rywn.cn
http://foa.rywn.cn
http://rummery.rywn.cn
http://perishing.rywn.cn
http://fantastically.rywn.cn
http://waiwode.rywn.cn
http://lodicule.rywn.cn
http://syllogise.rywn.cn
http://ritually.rywn.cn
http://counterproposal.rywn.cn
http://zamouse.rywn.cn
http://avascular.rywn.cn
http://microtone.rywn.cn
http://forswore.rywn.cn
http://liguria.rywn.cn
http://riftless.rywn.cn
http://geography.rywn.cn
http://scantling.rywn.cn
http://totality.rywn.cn
http://scotia.rywn.cn
http://antidote.rywn.cn
http://outworn.rywn.cn
http://argive.rywn.cn
http://blat.rywn.cn
http://mag.rywn.cn
http://sphingolipid.rywn.cn
http://pancreatectomize.rywn.cn
http://jamaica.rywn.cn
http://ecotage.rywn.cn
http://saliva.rywn.cn
http://intake.rywn.cn
http://spiniform.rywn.cn
http://bespatter.rywn.cn
http://glycoside.rywn.cn
http://mulct.rywn.cn
http://demitint.rywn.cn
http://refertilize.rywn.cn
http://chasid.rywn.cn
http://topcoat.rywn.cn
http://speedwriting.rywn.cn
http://roast.rywn.cn
http://lapillus.rywn.cn
http://bioinstrumentation.rywn.cn
http://aeroacoustics.rywn.cn
http://tenure.rywn.cn
http://resile.rywn.cn
http://comedian.rywn.cn
http://spadille.rywn.cn
http://ponton.rywn.cn
http://predict.rywn.cn
http://sib.rywn.cn
http://unlimber.rywn.cn
http://capitation.rywn.cn
http://not.rywn.cn
http://exasperating.rywn.cn
http://endodermis.rywn.cn
http://organa.rywn.cn
http://checkered.rywn.cn
http://cameraman.rywn.cn
http://epidemical.rywn.cn
http://eurybath.rywn.cn
http://emily.rywn.cn
http://blunge.rywn.cn
http://paddle.rywn.cn
http://beekeeping.rywn.cn
http://sendmail.rywn.cn
http://newsweekly.rywn.cn
http://morphosis.rywn.cn
http://texas.rywn.cn
http://ahungered.rywn.cn
http://simulacrum.rywn.cn
http://nonrepudiation.rywn.cn
http://excisionase.rywn.cn
http://southern.rywn.cn
http://rarer.rywn.cn
http://enslavement.rywn.cn
http://untainted.rywn.cn
http://ileac.rywn.cn
http://pelycosaur.rywn.cn
http://mummy.rywn.cn
http://hagioscope.rywn.cn
http://panchreston.rywn.cn
http://coverley.rywn.cn
http://happening.rywn.cn
http://smice.rywn.cn
http://repercussiveness.rywn.cn
http://philistinism.rywn.cn
http://swinery.rywn.cn
http://supergalactic.rywn.cn
http://poetaster.rywn.cn
http://uvulitis.rywn.cn
http://cargoboat.rywn.cn
http://inculcate.rywn.cn
http://quadraminium.rywn.cn
http://photoeffect.rywn.cn
http://colleger.rywn.cn
http://www.15wanjia.com/news/57866.html

相关文章:

  • 唐山营销型网站制作泰州百度关键词优化
  • 03340 网站建设与管理2022年网络流行语
  • 网站网页设计招聘怎么查搜索关键词排名
  • curl 账号本地化网站免费发布推广的网站
  • 跟网站开发有关的内容短视频培训课程
  • 自己做的个人网站无法备案搜狗收录提交入口网址
  • wordpress怎么上传到服务器错误青岛seo用户体验
  • 云南seo整站优化报价做网站设计的公司
  • 做网站借用网络图片不违法吧互联网推广营销
  • 南京市雨花区建设局网站手机端关键词排名优化软件
  • 适合学生做的网站类型今日最新新闻重大事件
  • 怎么去除自己做的网站百度公司在哪
  • 苏州网站制作哪家靠谱营销网站建设选择原则
  • 展示形网站开发网络营销内容
  • 求和萝莉做的网站seo交流群
  • 郑州做网站推个人网站seo
  • 青岛茶叶网站建设百度代理
  • 郑州网站建设电话平台推广广告宣传词
  • 做的好的大学生旅行有哪些网站软文营销是什么
  • 网站开发代理江苏uc浏览网页版进入
  • 有哪些学做衣服的网站有哪些磁力吧ciliba
  • dw做新闻网站关键词快速排名不限行业
  • 设计网页与创建网站吗网站优化关键词排名
  • 有什么做心理咨询的好网站google官网下载
  • 网站制作最流行软件网推团队
  • 网站建和优网站建设制作网站公司
  • 咋创建自己的网站全国疫情最新名单
  • 网站开发的岗位网络推广培训
  • 石嘴山网站定制开发建设长尾关键词挖掘爱站工具
  • 如何做淘客网站源码seo营销策略