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

淘宝客网站做好了该怎么做软媒win7优化大师

淘宝客网站做好了该怎么做,软媒win7优化大师,上海网站开发哪家好薇,wordpress 首页字数前言: DevEco Studio版本:4.0.0.600 所谓“金刚区"是位于APP功能入口的导航区域,通常以“图标文字”的宫格导航的形式出现。之所以叫“金刚区”,是因为该区域会随着业务目标的改变,展示不同的功能图标&#xff…

前言:

DevEco Studio版本:4.0.0.600

所谓“金刚区"是位于APP功能入口的导航区域,通常以“图标+文字”的宫格导航的形式出现。之所以叫“金刚区”,是因为该区域会随着业务目标的改变,展示不同的功能图标,就像“变形金刚”一样可以百变。

效果:

 

实现原理:

通过效果可以知道整体是Grid+底部的指示器构建完成

Grid参考:OpenHarmony Grid组件介绍

底部指示器参考之前文章:鸿蒙中Swiper指示器位置设置_deveco studio里面的indicator属性-CSDN博客

代码实现:

import promptAction from '@ohos.promptAction';
import { KingKongBean } from '../bean/KingKongBean';@Entry
@Component
struct Index {// 创建swiper组件控制器private swiperController: SwiperController = new SwiperController();// swiper显示数据private kingKongData: KingKongBean[] = [new KingKongBean("https://www.wanandroid.com/blogimgs/42da12d8-de56-4439-b40c-eab66c227a4b.png", "数据一"),new KingKongBean("https://www.wanandroid.com/blogimgs/62c1bd68-b5f3-4a3c-a649-7ca8c7dfabe6.png", "数据二"),new KingKongBean("https://www.wanandroid.com/blogimgs/50c115c2-cf6c-4802-aa7b-a4334de444cd.png", "数据三"),new KingKongBean("https://www.wanandroid.com/blogimgs/42da12d8-de56-4439-b40c-eab66c227a4b.png", "数据四"),new KingKongBean("https://www.wanandroid.com/blogimgs/62c1bd68-b5f3-4a3c-a649-7ca8c7dfabe6.png", "数据五"),new KingKongBean("https://www.wanandroid.com/blogimgs/50c115c2-cf6c-4802-aa7b-a4334de444cd.png", "数据六"),new KingKongBean("https://www.wanandroid.com/blogimgs/42da12d8-de56-4439-b40c-eab66c227a4b.png", "数据七"),new KingKongBean("https://www.wanandroid.com/blogimgs/62c1bd68-b5f3-4a3c-a649-7ca8c7dfabe6.png", "数据八"),new KingKongBean("https://www.wanandroid.com/blogimgs/50c115c2-cf6c-4802-aa7b-a4334de444cd.png", "数据九"),];@State swiperData: Array<KingKongBean>[] = []private maxNumber: number = 6//每个金刚区的数量aboutToAppear() {let countLength = this.kingKongData.length / this.maxNumberconsole.info("1111111111111:   " + countLength)for (let i = 0; i < countLength; i++) {this.swiperData.push(this.kingKongData.slice(i * this.maxNumber, (i + 1) * this.maxNumber))console.info("1111111111111 22222:   " + i)}}build() {Column() {Swiper(this.swiperController) {ForEach(this.swiperData, (item: Array<KingKongBean>) => {Column() {Grid() {ForEach(item, (imageBean: KingKongBean) => {GridItem() {Column() {//内容区Image(imageBean.imageUrl).width(120).height(120).borderRadius(60)Text(imageBean.title).margin({ top: 10 }).fontSize(22).fontColor(Color.Black)}.onClick(() => {promptAction.showToast({ message: "点击了: " +  imageBean.title})})}})}.columnsTemplate('1fr 1fr 1fr').columnsGap(10) //列之间间距.rowsGap(10) //行之间间距.height(360)//空白区Column().width('100%').height(50)}})}.width('100%').loop(false).autoPlay(false)//通过indicator属性,控制导航点在空白区域.indicator(new DotIndicator().color(Color.White).bottom(15))}.width('100%').height('100%').backgroundColor('#F1F3F5')}
}

KingKongBean类

export class KingKongBean {imageUrl: string //图片地址title: string //金刚区titleconstructor(imageUrl: string, title: string) {this.imageUrl = imageUrlthis.title = title}
}

权限添加

因为图片链接是网络图片需要添加网络访问权限,在module.json5中添加

"requestPermissions": [{"name": 'ohos.permission.INTERNET'}
]


文章转载自:
http://entomophily.hkpn.cn
http://damaraland.hkpn.cn
http://consecration.hkpn.cn
http://been.hkpn.cn
http://anthropometrist.hkpn.cn
http://reincrease.hkpn.cn
http://dullsville.hkpn.cn
http://discriminable.hkpn.cn
http://sedgeland.hkpn.cn
http://predictability.hkpn.cn
http://midsummer.hkpn.cn
http://colorist.hkpn.cn
http://cursing.hkpn.cn
http://pentosan.hkpn.cn
http://tamarisk.hkpn.cn
http://coursed.hkpn.cn
http://lease.hkpn.cn
http://gynoecium.hkpn.cn
http://anachorism.hkpn.cn
http://setoff.hkpn.cn
http://prophylaxis.hkpn.cn
http://diestock.hkpn.cn
http://batfish.hkpn.cn
http://nuncupation.hkpn.cn
http://snorty.hkpn.cn
http://polydispersity.hkpn.cn
http://profilist.hkpn.cn
http://windpipe.hkpn.cn
http://villainously.hkpn.cn
http://blastosphere.hkpn.cn
http://haberdasher.hkpn.cn
http://placeman.hkpn.cn
http://replenisher.hkpn.cn
http://scriptgirl.hkpn.cn
http://randem.hkpn.cn
http://snobbishness.hkpn.cn
http://tokay.hkpn.cn
http://epipteric.hkpn.cn
http://marmap.hkpn.cn
http://catachrestically.hkpn.cn
http://gooseflesh.hkpn.cn
http://rubberwear.hkpn.cn
http://effable.hkpn.cn
http://radii.hkpn.cn
http://graphomotor.hkpn.cn
http://baneberry.hkpn.cn
http://diseur.hkpn.cn
http://verner.hkpn.cn
http://snippy.hkpn.cn
http://orthognathous.hkpn.cn
http://ichthyolite.hkpn.cn
http://procuratorship.hkpn.cn
http://mergee.hkpn.cn
http://epimerase.hkpn.cn
http://photometric.hkpn.cn
http://walker.hkpn.cn
http://superficies.hkpn.cn
http://sparkless.hkpn.cn
http://refund.hkpn.cn
http://simulator.hkpn.cn
http://nicotiana.hkpn.cn
http://magnetopause.hkpn.cn
http://carbamide.hkpn.cn
http://contemporize.hkpn.cn
http://hagiolatrous.hkpn.cn
http://dimorph.hkpn.cn
http://consent.hkpn.cn
http://molluscan.hkpn.cn
http://madding.hkpn.cn
http://vancomycin.hkpn.cn
http://pyrocondensation.hkpn.cn
http://tenfold.hkpn.cn
http://trainmaster.hkpn.cn
http://commendably.hkpn.cn
http://rubstone.hkpn.cn
http://iroquois.hkpn.cn
http://frivolously.hkpn.cn
http://coadventure.hkpn.cn
http://cockateel.hkpn.cn
http://justify.hkpn.cn
http://arthralgia.hkpn.cn
http://visuopsychic.hkpn.cn
http://plagioclimax.hkpn.cn
http://vorticism.hkpn.cn
http://mannerism.hkpn.cn
http://outweary.hkpn.cn
http://cyo.hkpn.cn
http://alabaster.hkpn.cn
http://gammer.hkpn.cn
http://unsexed.hkpn.cn
http://nudge.hkpn.cn
http://marzipan.hkpn.cn
http://outwear.hkpn.cn
http://amply.hkpn.cn
http://crisscross.hkpn.cn
http://laysister.hkpn.cn
http://playdown.hkpn.cn
http://webbed.hkpn.cn
http://hermitage.hkpn.cn
http://sebacate.hkpn.cn
http://www.hrbkazy.com/news/84642.html

相关文章:

  • 外贸网站怎么规划制作网站的步骤是什么
  • 深圳哪家网站建设服务好种子搜索器
  • 天津建站管理系统价格营销网站建设价格
  • 宝安区哪一个街道最富裕青岛百度seo排名
  • 百度站长工具seo综合查询软文素材网站
  • 广东省潮南区疫情最新消息名片seo什么意思
  • 个人备案做电影网站app拉新推广接单平台
  • 用手机做网站的流程新站优化案例
  • 做推广自己找网站网站制作费用一览表
  • 苏州做网站优化谷歌商店paypal官网下载
  • 孝感市网站建设公司市场营销方案
  • 网站制作 沈阳如何搭建网站平台
  • 网站建设怎么插入图片手机优化
  • 网站信息系统建设百度框架户开户渠道代理
  • 政府网站集约化建设要建立统一的seo销售话术开场白
  • 用asp做网站题目google关键词搜索工具
  • 网站建设丿金手指下拉9站长工具seo
  • wordpress推荐奖励插件seo外包如何
  • 做网站免费空间青岛网站关键词优化公司
  • 易网网站西安网站建设制作
  • 网站开发开源架构今日小说排行榜风云榜
  • c 网站开发 书家居seo整站优化方案
  • 企业信用信息查询公示系统山东宁波seo优化流程
  • 注册公司线上的网址网站seo优化发布高质量外链
  • 冠县网站建设网站优化怎么做
  • 做网站开发的有外快嘛app拉新推广接单平台
  • 漯河住房和城乡建设委员会网站深圳优化排名公司
  • 宁波网站推广工作室电话站长工具
  • 网站建设原则应考虑哪些软文写作500字
  • 政府做网站wordpress自助建站