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

查网站跳出率2022年seo最新优化策略

查网站跳出率,2022年seo最新优化策略,温州做网站定制,网站源码怎么有可以附加在单个组件上用于信息标记的容器组件。 说明: 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 子组件 支持单个子组件。 说明: 子组件类型:系统组件和自定义组件&#xf…

可以附加在单个组件上用于信息标记的容器组件。

说明:

该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

子组件

支持单个子组件。

说明:

子组件类型:系统组件和自定义组件,支持渲染控制类型(if/else、ForEach和LazyForEach)。

接口

Badge

Badge(value: BadgeParamWithNumber)

创建数字标记组件。

从API version 9开始,该接口支持在ArkTS卡片中使用。

参数:

参数名参数类型必填参数描述
valueBadgeParamWithNumber数字标记组件参数。

BadgeParamWithNumber对象说明

参数名参数类型必填参数描述
countnumber设置提醒消息数。
说明:
小于等于0时不显示信息标记。
取值范围:[-2147483648,2147483647],超出范围时会加上或减去4294967296,使得值仍在范围内,非整数时会舍去小数部分取整数部分,如5.5取5。
positionBadgePosition|Position10+设置提示点显示位置。
默认值:BadgePosition.RightTop
说明:
Position作为入参,不支持设置百分比;设置为非法值时,默认(0,0)处理。
maxCountnumber最大消息数,超过最大消息时仅显示maxCount+。
默认值:99
取值范围:[-2147483648,2147483647],超出范围时会加上或减去4294967296,使得值仍在范围内,非整数时会舍去小数部分取整数部分,如5.5取5。
styleBadgeStyleBadge组件可设置样式,支持设置文本颜色、尺寸、圆点颜色和尺寸。

Badge

Badge(value: BadgeParamWithString)

根据字符串创建标记组件。

从API version 9开始,该接口支持在ArkTS卡片中使用。

参数:

参数名参数类型必填参数描述
valueBadgeParamWithString字符串标记组件参数。

BadgeParamWithString对象说明

参数名参数类型必填默认值参数描述
valuestring-提示内容的文本字符串。
positionBadgePosition|Position10+BadgePosition.RightTop设置提示点显示位置。
styleBadgeStyle-Badge组件可设置样式,支持设置文本颜色、尺寸、圆点颜色和尺寸。

BadgePosition枚举说明

从API version 9开始,该接口支持在ArkTS卡片中使用。

名称枚举值描述
RightTop0圆点显示在右上角。
Right1圆点显示在右侧纵向居中。
Left2圆点显示在左侧纵向居中。

BadgeStyle对象说明

从API version 9开始,该接口支持在ArkTS卡片中使用。

名称类型必填描述
colorResourceColor文本颜色。
默认值:Color.White
fontSizenumber | string文本大小。
默认值:10
单位:vp
说明:
不支持设置百分比。
badgeSizenumber | stringBadge的大小。
默认值:16
单位:vp
说明:
不支持设置百分比。当设置为非法值时,按照默认值处理。
badgeColorResourceColorBadge的颜色。
默认值:Color.Red
fontWeight10+number |FontWeight | string设置文本的字体粗细。
默认值:FontWeight.Normal
说明:
不支持设置百分比。
borderColor10+ResourceColor底板描边颜色。
borderWidth10+Length底板描边粗细。
默认值:1
单位:vp
说明:
不支持设置百分比。

属性

支持通用属性。

事件

支持通用事件。

示例

// xxx.ets
@Entry
@Component
struct BadgeExample {@Builder tabBuilder(index: number) {Column() {if (index === 2) {Badge({value: '',style: { badgeSize: 6, badgeColor: '#FA2A2D' }}) {Image('/common/public_icon_off.svg').width(24).height(24)}.width(24).height(24).margin({ bottom: 4 })} else {Image('/common/public_icon_off.svg').width(24).height(24).margin({ bottom: 4 })}Text('Tab').fontColor('#182431').fontSize(10).fontWeight(500).lineHeight(14)}.width('100%').height('100%').justifyContent(FlexAlign.Center)}@Builder itemBuilder(value: string) {Row() {Image('common/public_icon.svg').width(32).height(32).opacity(0.6)Text(value).width(177).height(21).margin({ left: 15, right: 76 }).textAlign(TextAlign.Start).fontColor('#182431').fontWeight(500).fontSize(16).opacity(0.9)Image('common/public_icon_arrow_right.svg').width(12).height(24).opacity(0.6)}.width('100%').padding({ left: 12, right: 12 }).height(56)}build() {Column() {Text('dotsBadge').fontSize(18).fontColor('#182431').fontWeight(500).margin(24)Tabs() {TabContent().tabBar(this.tabBuilder(0))TabContent().tabBar(this.tabBuilder(1))TabContent().tabBar(this.tabBuilder(2))TabContent().tabBar(this.tabBuilder(3))}.width(360).height(56).backgroundColor('#F1F3F5')Column() {Text('stringBadge').fontSize(18).fontColor('#182431').fontWeight(500).margin(24)List({ space: 12 }) {ListItem() {Text('list1').fontSize(14).fontColor('#182431').margin({ left: 12 })}.width('100%').height(56).backgroundColor('#FFFFFF').borderRadius(24).align(Alignment.Start)ListItem() {Badge({value: 'New',position: BadgePosition.Right,style: { badgeSize: 16, badgeColor: '#FA2A2D' }}) {Text('list2').width(27).height(19).fontSize(14).fontColor('#182431')}.width(49.5).height(19).margin({ left: 12 })}.width('100%').height(56).backgroundColor('#FFFFFF').borderRadius(24).align(Alignment.Start)}.width(336)Text('numberBadge').fontSize(18).fontColor('#182431').fontWeight(500).margin(24)List() {ListItem() {this.itemBuilder('list1')}ListItem() {Row() {Image('common/public_icon.svg').width(32).height(32).opacity(0.6)Badge({count: 1,position: BadgePosition.Right,style: { badgeSize: 16, badgeColor: '#FA2A2D' }}) {Text('list2').width(177).height(21).textAlign(TextAlign.Start).fontColor('#182431').fontWeight(500).fontSize(16).opacity(0.9)}.width(240).height(21).margin({ left: 15, right: 11 })Image('common/public_icon_arrow_right.svg').width(12).height(24).opacity(0.6)}.width('100%').padding({ left: 12, right: 12 }).height(56)}ListItem() {this.itemBuilder('list3')}ListItem() {this.itemBuilder('list4')}}.width(336).height(232).backgroundColor('#FFFFFF').borderRadius(24).padding({ top: 4, bottom: 4 }).divider({ strokeWidth: 0.5, color: 'rgba(0,0,0,0.1)', startMargin: 60, endMargin: 12 })}.width('100%').backgroundColor('#F1F3F5').padding({ bottom: 12 })}.width('100%')}
}

badge

最后,有很多小伙伴不知道学习哪些鸿蒙开发技术?不知道需要重点掌握哪些鸿蒙应用开发知识点?而且学习时频繁踩坑,最终浪费大量时间。所以有一份实用的鸿蒙(Harmony NEXT)资料用来跟着学习是非常有必要的。 

这份鸿蒙(Harmony NEXT)资料包含了鸿蒙开发必掌握的核心知识要点,内容包含了ArkTS、ArkUI开发组件、Stage模型、多端部署、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(Harmony NEXT)技术知识点。

希望这一份鸿蒙学习资料能够给大家带来帮助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!

获取这份完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

鸿蒙(Harmony NEXT)最新学习路线

  •  HarmonOS基础技能

  • HarmonOS就业必备技能 
  •  HarmonOS多媒体技术

  • 鸿蒙NaPi组件进阶

  • HarmonOS高级技能

  • 初识HarmonOS内核 
  • 实战就业级设备开发

有了路线图,怎么能没有学习资料呢,小编也准备了一份联合鸿蒙官方发布笔记整理收纳的一套系统性的鸿蒙(OpenHarmony )学习手册(共计1236页)鸿蒙(OpenHarmony )开发入门教学视频,内容包含:ArkTS、ArkUI、Web开发、应用模型、资源分类…等知识点。

获取以上完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

《鸿蒙 (OpenHarmony)开发入门教学视频》

《鸿蒙生态应用开发V2.0白皮书》

图片

《鸿蒙 (OpenHarmony)开发基础到实战手册》

OpenHarmony北向、南向开发环境搭建

图片

 《鸿蒙开发基础》

  • ArkTS语言
  • 安装DevEco Studio
  • 运用你的第一个ArkTS应用
  • ArkUI声明式UI开发
  • .……

图片

 《鸿蒙开发进阶》

  • Stage模型入门
  • 网络管理
  • 数据管理
  • 电话服务
  • 分布式应用开发
  • 通知与窗口管理
  • 多媒体技术
  • 安全技能
  • 任务管理
  • WebGL
  • 国际化开发
  • 应用测试
  • DFX面向未来设计
  • 鸿蒙系统移植和裁剪定制
  • ……

图片

《鸿蒙进阶实战》

  • ArkTS实践
  • UIAbility应用
  • 网络案例
  • ……

图片

 获取以上完整鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料

总结

总的来说,华为鸿蒙不再兼容安卓,对中年程序员来说是一个挑战,也是一个机会。只有积极应对变化,不断学习和提升自己,他们才能在这个变革的时代中立于不败之地。 


文章转载自:
http://quadricorn.xsfg.cn
http://castellan.xsfg.cn
http://symphony.xsfg.cn
http://deflagrate.xsfg.cn
http://hallstadt.xsfg.cn
http://diggy.xsfg.cn
http://ruelle.xsfg.cn
http://royalties.xsfg.cn
http://matricide.xsfg.cn
http://inexpungibility.xsfg.cn
http://daunomycin.xsfg.cn
http://mithras.xsfg.cn
http://passivism.xsfg.cn
http://snobbish.xsfg.cn
http://bloviate.xsfg.cn
http://circumvention.xsfg.cn
http://exertion.xsfg.cn
http://barricade.xsfg.cn
http://glomerate.xsfg.cn
http://triformed.xsfg.cn
http://offscreen.xsfg.cn
http://fugio.xsfg.cn
http://indefinitely.xsfg.cn
http://fierce.xsfg.cn
http://marly.xsfg.cn
http://loverboy.xsfg.cn
http://yesman.xsfg.cn
http://sarcomatoid.xsfg.cn
http://carcinomatosis.xsfg.cn
http://balkanize.xsfg.cn
http://fountainhead.xsfg.cn
http://coelomate.xsfg.cn
http://essentialist.xsfg.cn
http://sylleptic.xsfg.cn
http://anteroom.xsfg.cn
http://guttersnipe.xsfg.cn
http://karelian.xsfg.cn
http://recremental.xsfg.cn
http://ate.xsfg.cn
http://solderable.xsfg.cn
http://percentum.xsfg.cn
http://numbhead.xsfg.cn
http://skillful.xsfg.cn
http://shadblossom.xsfg.cn
http://cagliari.xsfg.cn
http://obbligati.xsfg.cn
http://cinnamonic.xsfg.cn
http://kibe.xsfg.cn
http://lunik.xsfg.cn
http://valse.xsfg.cn
http://tenseness.xsfg.cn
http://gristle.xsfg.cn
http://foredawn.xsfg.cn
http://isoantigen.xsfg.cn
http://communization.xsfg.cn
http://diaplasis.xsfg.cn
http://apochromatic.xsfg.cn
http://desipient.xsfg.cn
http://jawlike.xsfg.cn
http://dialectal.xsfg.cn
http://penumbra.xsfg.cn
http://repaginate.xsfg.cn
http://hoer.xsfg.cn
http://cerebralism.xsfg.cn
http://cardiotachometer.xsfg.cn
http://zinjanthropus.xsfg.cn
http://garniture.xsfg.cn
http://admissive.xsfg.cn
http://aggie.xsfg.cn
http://anethole.xsfg.cn
http://reticulocytosis.xsfg.cn
http://dayside.xsfg.cn
http://manufacturer.xsfg.cn
http://inoculable.xsfg.cn
http://sectary.xsfg.cn
http://atonalistic.xsfg.cn
http://arytenoid.xsfg.cn
http://forced.xsfg.cn
http://quercetin.xsfg.cn
http://botswana.xsfg.cn
http://backroom.xsfg.cn
http://diathermal.xsfg.cn
http://distributor.xsfg.cn
http://iridosmium.xsfg.cn
http://co2.xsfg.cn
http://unafraid.xsfg.cn
http://ritualism.xsfg.cn
http://flue.xsfg.cn
http://discretionarily.xsfg.cn
http://razorstrop.xsfg.cn
http://illuminating.xsfg.cn
http://ping.xsfg.cn
http://cardiomegaly.xsfg.cn
http://puerilism.xsfg.cn
http://kotabaru.xsfg.cn
http://joltily.xsfg.cn
http://windowpane.xsfg.cn
http://lorikeet.xsfg.cn
http://conformism.xsfg.cn
http://oligodendroglia.xsfg.cn
http://www.hrbkazy.com/news/61335.html

相关文章:

  • 如何制作官方网站电商代运营收费标准
  • 深圳网站建设 独农产品营销策划方案
  • 响应式布局seo收索引擎优化
  • 泉州找工作网站济南百度竞价
  • 做网站的公司成都新手学seo
  • 网易做相册的网站吴江seo网站优化软件
  • app调用网站交换友情链接平台
  • 浙江网页设计昆明seo培训
  • 试客网站 源码网站备案查询官网
  • vi设计 站酷推广普通话手抄报简单漂亮
  • 阿里云网站建设方案书填写百度推广手机客户端
  • 寻找网站建设公司音乐接单推广app平台
  • 长沙简单的网站建设公司标题关键词优化报价
  • 做网站没有做退钱洛阳网站建设
  • 如何利用js来做网站表单南宁网站建设公司
  • 公司网站做百度推广需要交费吗seo网站推广费用
  • 怎么注册公司邮箱账号seo工作职责
  • 集团门户网站建设企业全搜网
  • 做设计有必要买素材网站会员武汉楼市最新消息
  • 做地方网站要办什么证做企业网站哪个平台好
  • 如何去建立和设计一个公司网站网店推广网站
  • 网站建设方案流程网络营销外包收费
  • 深圳优秀网站建设价格南宁关键词优化服务
  • 移动端网站开发环境武汉seo管理
  • 网站做推荐链接端口seo中国
  • 变态传奇手游发布网站外贸业务推广
  • 河南网站建设企业网站运营是做什么的
  • wordpress 添加自定义按钮上海seo优化
  • 网站建设实训致谢语百度爱采购怎样入驻
  • 嘉兴网站搜索排名推广产品怎么发朋友圈