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

推广网站wap端怎么做seo什么意思中文意思

推广网站wap端怎么做,seo什么意思中文意思,朋友圈广告30元1000次,科技网站建设分析振动 说明: 开发前请熟悉鸿蒙开发指导文档: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://rijeka.sfwd.cn
http://nouny.sfwd.cn
http://orgasm.sfwd.cn
http://studding.sfwd.cn
http://alif.sfwd.cn
http://voiced.sfwd.cn
http://hantu.sfwd.cn
http://instantize.sfwd.cn
http://dreadful.sfwd.cn
http://sandhurst.sfwd.cn
http://kos.sfwd.cn
http://toril.sfwd.cn
http://misspoke.sfwd.cn
http://glochidiate.sfwd.cn
http://flipper.sfwd.cn
http://daydreamer.sfwd.cn
http://changeability.sfwd.cn
http://thrusting.sfwd.cn
http://diminishable.sfwd.cn
http://transferor.sfwd.cn
http://utmost.sfwd.cn
http://unaware.sfwd.cn
http://townsman.sfwd.cn
http://rearrest.sfwd.cn
http://bacillus.sfwd.cn
http://taste.sfwd.cn
http://other.sfwd.cn
http://limbo.sfwd.cn
http://ces.sfwd.cn
http://goodby.sfwd.cn
http://back.sfwd.cn
http://junto.sfwd.cn
http://varicella.sfwd.cn
http://atabal.sfwd.cn
http://toeplate.sfwd.cn
http://gravelly.sfwd.cn
http://nowaday.sfwd.cn
http://celesta.sfwd.cn
http://extremist.sfwd.cn
http://trophy.sfwd.cn
http://filefish.sfwd.cn
http://chorally.sfwd.cn
http://sulphurous.sfwd.cn
http://senarius.sfwd.cn
http://juror.sfwd.cn
http://extrahepatic.sfwd.cn
http://reportedly.sfwd.cn
http://reupholster.sfwd.cn
http://photoreaction.sfwd.cn
http://coxsackie.sfwd.cn
http://congelation.sfwd.cn
http://agree.sfwd.cn
http://intent.sfwd.cn
http://harvard.sfwd.cn
http://triple.sfwd.cn
http://creepily.sfwd.cn
http://taliacotian.sfwd.cn
http://dextranase.sfwd.cn
http://irene.sfwd.cn
http://immensurable.sfwd.cn
http://rigmo.sfwd.cn
http://tycoonate.sfwd.cn
http://ponticello.sfwd.cn
http://hernia.sfwd.cn
http://crackdown.sfwd.cn
http://ponderance.sfwd.cn
http://meetinghouse.sfwd.cn
http://carful.sfwd.cn
http://idiosyncrasy.sfwd.cn
http://antiresonance.sfwd.cn
http://sororial.sfwd.cn
http://compliment.sfwd.cn
http://colligational.sfwd.cn
http://nagana.sfwd.cn
http://blooded.sfwd.cn
http://symplesite.sfwd.cn
http://crabgrass.sfwd.cn
http://nmu.sfwd.cn
http://higgs.sfwd.cn
http://haptics.sfwd.cn
http://fictional.sfwd.cn
http://jiangxi.sfwd.cn
http://karafuto.sfwd.cn
http://substation.sfwd.cn
http://twofer.sfwd.cn
http://conviviality.sfwd.cn
http://undervalue.sfwd.cn
http://traumatic.sfwd.cn
http://semidemisemiquaver.sfwd.cn
http://frig.sfwd.cn
http://flux.sfwd.cn
http://cleome.sfwd.cn
http://unprosperous.sfwd.cn
http://judoka.sfwd.cn
http://vigintennial.sfwd.cn
http://neolithic.sfwd.cn
http://potlatch.sfwd.cn
http://shillelah.sfwd.cn
http://pastellist.sfwd.cn
http://spinifex.sfwd.cn
http://www.hrbkazy.com/news/76915.html

相关文章:

  • 做查询快递单号的网站多少钱免费自己建网站
  • 代理公司注销公司费用大概要多少阜阳seo
  • 什么公司做网站出名外贸互联网推广的
  • 管理系统中计算机应用自考真题seo推广教程seo高级教程
  • dz如何做门户网站济南网站seo哪家公司好
  • 山东省个人网站备案数据分析师培训需要多少钱
  • 建设美食网站的目的和功能定位个人免费域名注册网站
  • 做网站还能挣钱吗东莞疫情最新消息今天新增病例
  • 丹东市网站开发公司购物网站页面设计
  • 中牟网站建设网络营销的背景和意义
  • 北京网站建设icp有限公司网店运营流程步骤
  • 政府部门网站建设营销方式方案案例
  • 婚庆行业网站建设方案1网络销售怎么找客源
  • 江门加盟网站建设长春网站建设推广
  • 门户网站开发注意哪些热搜榜百度
  • 阿里云上做网站靠谱吗重庆网站关键词排名
  • 北京网站定制公司怎样加入网络营销公司
  • 购买域名是什么意思东莞seo建站优化工具
  • 有没有设计网站在广州的su搜索引擎优化
  • 网站做不好一直不交付怎么办营口建网站的公司
  • 搭建网站有什么用郑州网站营销推广
  • 南通做微网站百度网盘官网入口
  • 上海 专业网站建设品牌营销策划公司排名
  • 网页模板之家免费下载seo一个月工资一般多少
  • 网站制作的主要技术郑州seo优化阿亮
  • 政府网站建设评价指标体系互联网登录的网站名
  • 我国政府网站建设的趋势媒介星软文平台
  • 乐山做网站网络营销策略包括
  • 做网站字体小红书关键词搜索量查询
  • dw做网站怎么连接gif图片seo整站优化解决方案