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

陕西省房和城乡建设厅网站忠县网站制作

陕西省房和城乡建设厅网站,忠县网站制作,编程网课哪家好,万网一个ip建立多个网站一、前言 大家好#xff01;我是 是江迪呀。我们在进行微信小程序开发时#xff0c;常常需要自定义一些东西#xff0c;比如自定义顶部导航、自定义底部导航等等。那么知道这些自定义内容的具体位置、以及如何适配不同的机型就变得尤为重要。下面让我以在iPhone机型#x…一、前言 大家好我是 是江迪呀。我们在进行微信小程序开发时常常需要自定义一些东西比如自定义顶部导航、自定义底部导航等等。那么知道这些自定义内容的具体位置、以及如何适配不同的机型就变得尤为重要。下面让我以在iPhone机型来给大家介绍下微信小程序如何获取自定义内容的位置信息。 二、开启自定义 如果需要自定义顶部和底部导航。那么如何在自定义后能够适配不同的机型而不会出现样式问题呢我们可以通过wx.getSystemInfo({})方法来获取页面的信息来保证样式的正确性。此方法常用于app.js文件中的onLanch()方法中保证这些信息优先被加载并把获取到的页面信息放到全局变量中方便其他页面的获取使用。 在此之前需要开启自定义顶部和底部导航栏。如下所示 {pages: [pages/index/index,pages/index2/index2 ],//自定义顶部导航 navigationStyle: custom,window: {navigationStyle: custom,navigationBarTextStyle: white,backgroundTextStyle: light},//自定义底部导航 navigationStyle: custom,这里注意在设置自定义底部导航栏时list中至少包含两个页面tabBar: {custom: true,list: [{pagePath: pages/index/index,text: 首页},{pagePath: pages/index2/index2,text: 首页2}]},style: v2,sitemapLocation: sitemap.json }2.1 整个页面 1.位置 2.如何获取 页面代码 view styleheight: {{screenHeight}}px;background-color: aliceblue; /view页面js代码 const app getApp() Page({data: {screenHeight: app.globalData.screenHeight,} }) app.js文件代码 onLaunch: function() {wx.getSystemInfo({success: e {//获取整个页面的高度this.globalData.screenHeight e.screenHeight;}},)}2.1 状态栏 1.位置 状态栏就是手机最顶部显示时间、信号、电量等信息的区域。一般状态栏的信息我们不单独获取设置因为顶部导航栏包含了状态栏。 2.如何获取 页面代码 !--index.wxml-- view styleheight: {{screenHeight}}px;background-color: aliceblue;!--状态栏高度--view styleheight: {{statusBarHeight}}px;background-color: red;/view /view 页面js代码 // index.js const app getApp() Page({data: {screenHeight: app.globalData.screenHeight,statusBarHeight: app.globalData.statusBarHeight} })app.js文件代码 onLaunch: function() {wx.getSystemInfo({success: e {this.globalData.screenHeight e.screenHeight;//获取状态栏的高度this.globalData.StatusBar e.statusBarHeight;}},)}2.2 顶部导航栏 1.位置 顶部导航栏的高度是包含胶囊体的。 2.如何获取 首先获取胶囊体的信息如果不存在胶囊体顶部导航栏高度 状态栏高度 50如果存在顶部导航栏高度 胶囊体离页面顶部的距离 胶囊体离页面底部的距离 - 状态栏高度 页面代码 view styleheight: {{screenHeight}}px;background-color: aliceblue;!--顶部导航高度--view styleheight: {{customBar}}px;background-color: blue;/view /view 页面js代码 const app getApp() Page({data: {screenHeight: app.globalData.screenHeight,customBar: app.globalData.CustomBar} }) app.js代码 // app.js App({globalData:{},onLaunch: function() {wx.getSystemInfo({success: e {let capsule wx.getMenuButtonBoundingClientRect();if (capsule) {this.globalData.Custom capsule;this.globalData.CustomBar capsule.bottom capsule.top - e.statusBarHeight;} else {this.globalData.CustomBar e.statusBarHeight 50;}}},)} }) 2.4 内容区域 1.位置 如果你做的小程序没有底部导航栏的话那么内容区域 页面总高度 - 顶部导航栏高度 但是如果你需要底部导航的话那么内容区域 页面总高度 - 顶部导航栏高度 - 底部导航栏高度 2.如何获取 页面代码 view styleheight:{{screenHeight}}px;width: 100%;background-color: rgb(255, 255, 255);!--顶部导航栏--view class styleheight: {{CustomBar}}px;background-color: blue;/view!--内容区域--view class styleheight: {{screenHeight - CustomBar}}px;background-color: black;/view!--内容区域 包含底部导航--view class styleheight: {{screenHeight - CustomBar - tabBarHeight}}px;background-color: black;/view/view页面js代码 const app getApp() Page({data: {screenHeight: app.globalData.screenHeight,CustomBar: app.globalData.CustomBar,tabBarHeight: app.globalData.tabBarHeight,} })app.js代码 // app.js App({globalData:{},onLaunch: function() {// 获取系统状态栏信息wx.getSystemInfo({success: e {this.globalData.screenHeight e.screenHeight;this.globalData.tabBarHeight e.screenHeight - e.safeArea.bottom 50let capsule wx.getMenuButtonBoundingClientRect();if (capsule) {this.globalData.CustomBar capsule.bottom capsule.top - e.statusBarHeight;} else {this.globalData.CustomBar e.statusBarHeight 50;}}},)} }) 2.3 底部导航栏 1.位置 2.如何获取 页面代码 view styleheight: {{screenHeight}}px;background-color: aliceblue;!--顶部导航高度--view styleheight: {{customBar}}px;background-color: blue;/view!--内容高度 包含底部导航--view styleheight: {{screenHeight - customBar - tabBar}}px;background-color: black;/view!--底部导航高度--view styleheight: {{tabBarHeight}}px;background-color: red;/view /view 页面js代码 const app getApp() Page({data: {screenHeight: app.globalData.screenHeight,statusBarHeight: app.globalData.statusBarHeight,customBar: app.globalData.CustomBar,tabBar: app.globalData.tabBarHeight,tabBarHeight: app.globalData.tabBarHeight} })app.js代码 onLaunch: function() {wx.getSystemInfo({success: e {this.globalData.screenHeight e.screenHeight;this.globalData.tabBarHeight e.screenHeight-e.safeArea.bottom 50let capsule wx.getMenuButtonBoundingClientRect();if (capsule) {this.globalData.Custom capsule;this.globalData.CustomBar capsule.bottom capsule.top - e.statusBarHeight;} else {this.globalData.CustomBar e.statusBarHeight 50;}}},)}这个底部导航栏之所以50我是从小程序框架中获取的可以直接拿来用。 三、胶囊体 3.1 什么是胶囊体 我们再做自定义顶部导航时在一些场景下需要在导航中设置返回按钮以及其他信息 这些按钮和信息需要和胶囊体对齐才完美所以我们需要获取到胶囊体的位置信息。 3.2 如何获取 // app.js App({globalData:{},onLaunch: function() {// 获取系统状态栏信息wx.getSystemInfo({success: e {//胶囊体距离顶部距离this.globalData.capsuleTop wx.getMenuButtonBoundingClientRect().top;//胶囊体的高度this.globalData.capsuleHeight wx.getMenuButtonBoundingClientRect().height;//胶囊体的宽度this.globalData.capsuleWidth wx.getMenuButtonBoundingClientRect().width;}},wx.onKeyboardHeightChange((res) {console.log(键盘高度111111, res.height)wx.setStorageSync(keyBordHeight, res.height)}))} })
http://www.hkea.cn/news/14516858/

相关文章:

  • 大连做网站比较好的公司如何用ps做网站标识
  • 手机怎么在百度做网站广告sem是什么意思
  • 网站开发考试题保护wordpress图片链接
  • 怎样才能做一个手机网站东莞市建设局网站
  • wordpress中文验证码广州新塘排名seo优化公司
  • 图书馆网站建设网站的目的郑州seo优化推广
  • 网站推广自己可以做吗互联网保险的发展趋势
  • 如何跳过网站会员手机端怎么看世界杯
  • 抚顺做网站推广链接制作软件
  • 旅游网站建设的目的免费看黄金的软件
  • 重庆网站设计哪家好泰州外贸网站建设
  • 商丘网站建设专业现状什么网站可以做项目
  • 苏宁网站建设深圳网站推广外包
  • 成都网站建设排名将自己做的网站发布到网上
  • 网站页面设计制作百事通做网站
  • 24小时二手表网站怎么做一网站
  • 做百度移动网站点击网址转换成二维码
  • 网站用什么软件程序做无锡自助建站网站
  • 企业网站建站意义wordpress阿里矢量图使用方法
  • 中国制造网怎么注册智能优化网站
  • 编写网站的语言有哪些wordpress点击文字弹窗
  • 商务咨询公司网站制作模板ysl网站设计论文
  • 免费网站重生做军嫂哪个app推广佣金高
  • 做外汇哪个网站看外国消息温州高端网站建设公司
  • 网站开发报告样式wordpress写文章排版
  • 如何租用网站服务器国外广告设计网站
  • 秦皇岛的网站建设公司外贸网站搭建难不难
  • wordpress图片文件目录下网站长尾关键词优化
  • 沈阳做网站找思路动漫项网站建设项目项目建议书
  • 网站建设需要怎样的经营范围网站开发时app打开很慢