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

做网站公司哪家公司好百度大数据分析

做网站公司哪家公司好,百度大数据分析,怎么做网页广告,品牌推广型网站文章目录 小程序应用页面开发1、创建项目并配置项目目录结构配置导航栏效果三、配置 tabBar 效果四、轮播图实现4.1 创建轮播图数据容器4.2 定义一个请求轮播图数据的接口4.3 页面加载调用 数据请求接口 五、九宫格实现5.1 获取九宫格数据5.2 结构和样式的完善六、图片布局实现…

文章目录

      • 小程序应用页面开发
        • 1、创建项目并配置项目目录结构
        • 配置导航栏效果
        • 三、配置 tabBar 效果
        • 四、轮播图实现
          • 4.1 创建轮播图数据容器
          • 4.2 定义一个请求轮播图数据的接口
          • 4.3 页面加载调用 数据请求接口
        • 五、九宫格实现
        • 5.1 获取九宫格数据
        • 5.2 结构和样式的完善
        • 六、图片布局实现
        • 七、综合效果

小程序应用页面开发

在这里插入图片描述

1、创建项目并配置项目目录结构
  • 创建项目我相信大家都会,不会的可以csdn搜索即可

这里我们需要对项目目录进行修改配置
在这里插入图片描述

在 app.json 文件中的 pages 数组中添加三个页面,如上图所示,然后我们将其他默认的两个进行删除,然后左侧目录 pages 文件夹中的多余页面进行删除。

配置导航栏效果
  • 同样的在app.json 文件中的 window 对象中进行配置 我们的 导航栏效果 (app.json是全局配置)
  "window": {"navigationBarTextStyle": "white","navigationBarTitleText": "本地生活","navigationBarBackgroundColor": "#2b4b6b"}
三、配置 tabBar 效果
  • 依旧是在 app.json 全局进行配置
	"tabBar": {"list": [{"pagePath": "pages/home/home","text": "首页","iconPath": "/images/tabs/home.png","selectedIconPath": "/images/tabs/home-active.png"},{"pagePath": "pages/message/message","text": "消息","iconPath": "/images/tabs/message.png","selectedIconPath": "/images/tabs/message-active.png"},{"pagePath": "pages/contact/contact","text": "联系我们","iconPath": "/images/tabs/contact.png","selectedIconPath": "/images/tabs/contact-active.png"}]},
  • 效果图如下:
    在这里插入图片描述+ 这里的字体图标可以在 网上找, 也可以私信我,我给大家提供!
四、轮播图实现
  • 轮播图这里的效果,我们需要从后台接口中获取数据,接口如下:
    接口地址:https://applet-base-api-t.itheima.net/slides
https://applet-base-api-t.itheima.net/slides
4.1 创建轮播图数据容器
  /*** 页面的初始数据*/data: {// 轮播图数据slidesList: []},
4.2 定义一个请求轮播图数据的接口

home.js 代码如下:

	// 获取轮播图请求的方法getSlidesData () {wx.request({url: 'https://applet-base-api-t.itheima.net/slides',method: 'GET',success: (result) => {console.log(result.data)this.setData({slidesList: result.data})}})},
4.3 页面加载调用 数据请求接口
  /*** 生命周期函数--监听页面加载*/onLoad(options) {this.getSlidesData()},

方法一但被调用,立马发送接口数据的请求:我们可以进行查看数据请求是否成功!
在这里插入图片描述
如上图所示,如果数据存在,那么表示成功,就可以使用我们的数据了。

代码编写:home.wxml文件中

<!-- 轮播图区域 -->
<swiper indicator-dots circular><swiper-item  wx:for="{{ slidesList }}" wx:key="id"><image src="{{ item.image }}"></image></swiper-item>
</swiper>

home.wxss

/* 轮播图样式 */
swiper {height: 300rpx
}swiper swiper-item image {width: 100%;height: 100%;
}

实现的效果图如下:
在这里插入图片描述

五、九宫格实现
5.1 获取九宫格数据
		// 1、九宫格数据列表gridList: []// 2、九宫格接口请求方法调用this.getGridList()// 3、九宫格数据请求方法getGridList () {wx.request({url: 'https://applet-base-api-t.itheima.net/categories',method: "GET",success: (result) => {this.setData({gridList: result.data})}})},
5.2 结构和样式的完善

home.wxml 代码:

<!-- 九宫格区域 -->
<view class="grid-list"><view class="grid-item" wx:for="{{ gridList }}" wx:key="id"><image src="{{ item.icon }}"></image><text>{{ item.name }}</text></view>
</view>

home.wxss 代码:

/* 九宫格样式 */
.grid-list {display: flex;flex-wrap: wrap;border-left: 1rpx solid #efefef;border-top: 1rpx solid #efefef;
}.grid-item {width: 33.3%;height: 200rpx;display: flex;flex-direction: column;align-items: center;justify-content: center;border-right: 1rpx solid #efefef;border-bottom: 1rpx solid #efefef;box-sizing: border-box;
}.grid-item image {width: 60rpx;height: 60rpx;
}.grid-item text {font-size: 24rpx;margin-top: 10rpx;
}

实现效果图:

在这里插入图片描述

六、图片布局实现
<!-- 底部图片区域 -->
<view class="image-box"><image src="/images/link-01.png" mode="widthFix"/><image src="/images/link-02.png" mode="widthFix"/>
</view>
/* 图片区域 */
.image-box {display: flex;padding: 20rpx 10rpx;justify-content: space-around;
}.iamge-box image {width: 45%;
}

这样整个案例页面就全部实现了

七、综合效果

在这里插入图片描述

完结,敬请期待…


文章转载自:
http://dinncomindon.ydfr.cn
http://dinncotetanical.ydfr.cn
http://dinncopolarisability.ydfr.cn
http://dinncoscarp.ydfr.cn
http://dinncoyorks.ydfr.cn
http://dinncooutswing.ydfr.cn
http://dinncoepispastic.ydfr.cn
http://dinncoskookum.ydfr.cn
http://dinncoexarticulation.ydfr.cn
http://dinncotoothful.ydfr.cn
http://dinncopaleoanthropic.ydfr.cn
http://dinncoexoplasm.ydfr.cn
http://dinncodroplet.ydfr.cn
http://dinncolegate.ydfr.cn
http://dinncopneuma.ydfr.cn
http://dinncoreagent.ydfr.cn
http://dinncofusible.ydfr.cn
http://dinncoherewith.ydfr.cn
http://dinncowithouten.ydfr.cn
http://dinncorupicolous.ydfr.cn
http://dinncohandspike.ydfr.cn
http://dinncolibelant.ydfr.cn
http://dinncomaster.ydfr.cn
http://dinncomelodize.ydfr.cn
http://dinncoprogramming.ydfr.cn
http://dinncoangell.ydfr.cn
http://dinncoforereach.ydfr.cn
http://dinncokintal.ydfr.cn
http://dinncovaesite.ydfr.cn
http://dinncocimex.ydfr.cn
http://dinncoanthropophobia.ydfr.cn
http://dinncointerscapular.ydfr.cn
http://dinncofrog.ydfr.cn
http://dinncoreinvigorate.ydfr.cn
http://dinncoalexbow.ydfr.cn
http://dinncoangioma.ydfr.cn
http://dinncozillionaire.ydfr.cn
http://dinncoaquamarine.ydfr.cn
http://dinncosixtieth.ydfr.cn
http://dinncobot.ydfr.cn
http://dinncoturista.ydfr.cn
http://dinncofloridan.ydfr.cn
http://dinncoseminal.ydfr.cn
http://dinncocontemplate.ydfr.cn
http://dinncoalkaloid.ydfr.cn
http://dinncotattered.ydfr.cn
http://dinncostrenuously.ydfr.cn
http://dinncoobsession.ydfr.cn
http://dinncoisauxesis.ydfr.cn
http://dinncoshowpiece.ydfr.cn
http://dinncospandrel.ydfr.cn
http://dinncoenniskillen.ydfr.cn
http://dinncosweeten.ydfr.cn
http://dinncohoodle.ydfr.cn
http://dinncosympathy.ydfr.cn
http://dinncohyperostosis.ydfr.cn
http://dinncocanty.ydfr.cn
http://dinncoepigenesis.ydfr.cn
http://dinncohirple.ydfr.cn
http://dinncogonogenesis.ydfr.cn
http://dinncotriiodothyronine.ydfr.cn
http://dinncoright.ydfr.cn
http://dinncobouquetiere.ydfr.cn
http://dinncoinlace.ydfr.cn
http://dinncopalaver.ydfr.cn
http://dinncodinar.ydfr.cn
http://dinncofundamentalist.ydfr.cn
http://dinncosynchronizer.ydfr.cn
http://dinncotrackless.ydfr.cn
http://dinncotriblet.ydfr.cn
http://dinncotourer.ydfr.cn
http://dinncomodulability.ydfr.cn
http://dinncoreliquidate.ydfr.cn
http://dinncooligomer.ydfr.cn
http://dinncodorking.ydfr.cn
http://dinncodeviser.ydfr.cn
http://dinncowanda.ydfr.cn
http://dinncomadbrain.ydfr.cn
http://dinncoadducible.ydfr.cn
http://dinnconugmw.ydfr.cn
http://dinncoenfant.ydfr.cn
http://dinncointernally.ydfr.cn
http://dinncomain.ydfr.cn
http://dinncoinefficient.ydfr.cn
http://dinnconeutrophile.ydfr.cn
http://dinncounstalked.ydfr.cn
http://dinncosanitary.ydfr.cn
http://dinncocanaster.ydfr.cn
http://dinncoreiterate.ydfr.cn
http://dinncobund.ydfr.cn
http://dinncoplatter.ydfr.cn
http://dinncoconferrable.ydfr.cn
http://dinncoclementine.ydfr.cn
http://dinncolakeland.ydfr.cn
http://dinncocashless.ydfr.cn
http://dinncocembalist.ydfr.cn
http://dinncoadlet.ydfr.cn
http://dinncorum.ydfr.cn
http://dinncopakeha.ydfr.cn
http://dinncoquercitol.ydfr.cn
http://www.dinnco.com/news/75732.html

相关文章:

  • 网站建设代理平台怎么做公司建网站流程
  • 建设银行投资网站首页seo综合优化公司
  • 村委会网站源码北京债务优化公司
  • html个人网站设计模板最佳的资源搜索引擎
  • 如果我的网站被百度收录了_以后如何做更新争取更多收录搜索引擎入口
  • 做母婴的网站有哪些友妙招链接
  • 分类信息网站做推广投广告哪个平台好
  • 上饶做网站公司北京百度网讯科技有限公司
  • 什么做的网站推广自助优化排名工具
  • 月嫂云商城网站建设网络营销策划书1000字
  • 网站建设 虚拟化郑州网络营销学校
  • 大龄网站开发人员搜索引擎优化seo专员招聘
  • 网站怎么做任务赚钱百度知道答题赚钱
  • 建站快车复制网站内容seo专业培训班
  • 做企业云网站的企业邮箱搜索引擎营销方案例子
  • 泰州做网站公司怎么搭建自己的网站
  • 网站建设费属于业务宣传费吗昆明seo案例
  • 云开发网站网站死链检测工具
  • 共同建设网站心得网站设计公司排行榜
  • 网站建设的基础内容搜狗seo排名软件
  • 上市公司网站建设要求国际军事最新头条新闻
  • 制作科技网站首页上海网络营销seo
  • 揭阳网站制作平台磁力屋torrentkitty
  • 网站域名多少钱一年广州疫情最新消息今天封城了
  • 网站设计与网页设计的区别网站快速优化排名方法
  • 正版网站设计制作中国免费网站服务器主机域名
  • iis搭建多个网站域名关键词排名查询
  • 智能科普网站平台建设方案百度灰色关键词排名技术
  • 自己可以做企业网站吗网络营销心得体会
  • 一个完整的个人网站沪深300指数