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

b2c网站是什么微商已经被国家定为传销了

b2c网站是什么,微商已经被国家定为传销了,广州网站建设联系电话,wordpress付费可见上一期我们了解了 小程序底部导航栏 的实现效果,今天一起来了解下如何设置小程序标题栏~ 基础标题栏 小程序标题栏主要包含返回、标题、收藏、菜单、收起 5 个模块,其中能够调整的部分只有标题和背景色。 另外 IDE上无法展示收藏按钮&#…

上一期我们了解了 小程序底部导航栏 的实现效果,今天一起来了解下如何设置小程序标题栏~

基础标题栏

小程序标题栏主要包含返回、标题、收藏、菜单、收起 5 个模块,其中能够调整的部分只有标题和背景色。

另外 IDE上无法展示收藏按钮,如果测试收藏按钮的相关功能 需要使用真机模式调试

 

1、基础属性

📌 我们可以在 app.json 中标题栏的基础属性进行设置,常用的属性如下:

  • defaultTitle :页面标题
  • titleBarColor :导航栏背景色
  • titleImage :图片标题

app.json(对所有页面生效)

这里分别举例说明「文字标题」和「图片标题」对应的效果:

"window": {"defaultTitle": "购物商城","titleBarColor":"#ff4343","titleImage":"https://img2.baidu.com/it/u=417873769,1232851485&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500"},

文字标题效果:

图片标题效果:

注意:

  • titleImage 优先级 > defaultTitle
  • 如果在页面的 json 文件中配置,仅对当前页面生效
  • 页面配置优先级 > app.json
  • 当前页面导航栏背景色无设置的情况下会沿用上级页面的配置

关于导航栏标题配置可能遇到的问题可以参考下面的文档:

  • [配置导航栏图片地址]
  • [修改顶部导航栏背景色]
  • [小程序标题如何在标题栏居中显示]
  • [如何设置导航栏背景渐变色]
  • [蒙层能否遮住小程序导航栏和 tabBar]

2、动态样式修改

如果需要对标题的样式进行动态修改,可以通过 my.setNavigationBar 方法实现:

// 设置导航栏前景色。注:frontColor 需要和 backgroundColor 一起设置
my.setNavigationBar({frontColor: '#ffffff',backgroundColor: '#ff0000',
})
// 设置导航栏标题
my.setNavigationBar({title: '当前标题'
})
// 重置导航栏颜色为默认配色
my.setNavigationBar({reset: true
})

另外,要注意的是,如果跳转到非 tab /首页的情况且页面栈深度为 1,页面上会出现 home 图标,如下图:

此时我们可以使用 my.hideBackHome 方法进行隐藏

Page({onShow() {if(getCurrentPages().length == 1){//判断页面栈深度my.hideBackHome();}},
});

📖 小贴士:

  • 建议在页面 onShow 时调用该方法,避免有闪烁或不生效。
  • 除了 home 图标外,其他的按钮都无法隐藏/去除。

这边汇总了一些关于动态样式修改的问题:

  • [返回按钮是否可隐藏]
  • [导航栏如何设置前景色,返回按钮颜色和标题颜色]

自定义标题栏

因为基础标题很多的属性都无法修改,如果需要标题居中、设置搜索框等操作的话,就需要用到自定义标题栏了。

1、属性配置

首先,自定义标题栏需要在对应页面的 .json 文件中配置以下属性:

  • transparentTitle:标题栏透明设置,支持设置 none / always / auto
  • titlePenetrate:是否允许标题栏点击穿透点击后方元素
"window": {"defaultTitle": "购物商城","transparentTitle":"always","titlePenetrate":"YES"}

none 效果:

always 效果:

auto 效果:向下拉时会逐渐透明

2、编写自定义标题栏代码

透明设置完成后,为了不跟返回按钮以及胶囊的位置冲突,我们需要获取到对应的位置信息,根据位置来确定自定义的模块的位置。

主要是获取标题栏(titleBarHeight)、状态栏(statusBarHeight)以及返回按钮右边的距离(right)。

获取标题栏位置:

Page({data: {titleBarHeight: 0,//标题栏高度statusBarHeight: 0,//状态栏高度right: 0,//返回按钮右边距离},onLoad(options) {const {titleBarHeight,statusBarHeight,} = my.getSystemInfoSync();this.setData({titleBarHeight,statusBarHeight,  });const{backButtonIcon,} = my.getLeftButtonsBoundingClientRect();this.setData({right:backButtonIcon.right});},//点击手机标题栏触发的事件,需要在 index.json 配置 titlePenetrate:"YES"onTitleBar(e) {my.alert({title: '点击了标题栏'});}
});

在 style 中设置自定义标题栏高度:

需要注意的是,只能在 style 进行动态配置,.css文件不支持动态配置。

<view class="custom-nav" style="height:{{titleBarHeight + statusBarHeight}}px"><view class="custom-titleBar" style="height:{{titleBarHeight}}px;padding-top:{{statusBarHeight}}px;padding-left:{{right}}px"onTap="onTitleBar" >hi,我是自定义标题~</view>
</view>

.acss 代码:

.custom-nav {background-image: linear-gradient(to bottom, #BC3985, #D15B2C);
}.custom-titleBar {display: flex;align-items: center;color: white;font-size: 16px;margin-left: 16px;
}

实现效果:

自定义导航栏的常见问题汇总在这里了,大家可以参考下~:

  • [导航栏设置透明后iOS和Android标题颜色不一致]
  • [如何获取标题栏高度以及状态栏高度]
  • [小程序导航栏标题设置空后无法触发点击事件]

以上就是关于【小程序标题栏设置】的所有内容了,希望对你有所帮助*★,°*:.☆( ̄▽ ̄)/$:*.°★* 。


文章转载自:
http://dinncosolidness.ssfq.cn
http://dinncoretaliation.ssfq.cn
http://dinncoaxiomatically.ssfq.cn
http://dinncojilin.ssfq.cn
http://dinncoafflated.ssfq.cn
http://dinncoherero.ssfq.cn
http://dinncoalec.ssfq.cn
http://dinncofusel.ssfq.cn
http://dinncovibist.ssfq.cn
http://dinncohydrocracking.ssfq.cn
http://dinncomiseducate.ssfq.cn
http://dinncoaboulia.ssfq.cn
http://dinncohanging.ssfq.cn
http://dinncooutpace.ssfq.cn
http://dinncoelectrodiagnosis.ssfq.cn
http://dinncorelume.ssfq.cn
http://dinncospandril.ssfq.cn
http://dinncoelspeth.ssfq.cn
http://dinncotzaddik.ssfq.cn
http://dinncohighlight.ssfq.cn
http://dinncofrisette.ssfq.cn
http://dinncoeyewitness.ssfq.cn
http://dinncolaminaria.ssfq.cn
http://dinncoseptemvir.ssfq.cn
http://dinncokeratopathy.ssfq.cn
http://dinncoinstitute.ssfq.cn
http://dinncofrills.ssfq.cn
http://dinncounnail.ssfq.cn
http://dinncosiree.ssfq.cn
http://dinncodenet.ssfq.cn
http://dinncopreadamite.ssfq.cn
http://dinncoenarthrosis.ssfq.cn
http://dinncositten.ssfq.cn
http://dinncoxxxiv.ssfq.cn
http://dinncoaccurately.ssfq.cn
http://dinncoadministerial.ssfq.cn
http://dinncoclick.ssfq.cn
http://dinncoeatage.ssfq.cn
http://dinncocollarette.ssfq.cn
http://dinncogerminate.ssfq.cn
http://dinncoropey.ssfq.cn
http://dinncoensorcel.ssfq.cn
http://dinncoudf.ssfq.cn
http://dinncocrucis.ssfq.cn
http://dinncopotsdam.ssfq.cn
http://dinncointerglacial.ssfq.cn
http://dinncometainfective.ssfq.cn
http://dinncobarracuda.ssfq.cn
http://dinncokeystoner.ssfq.cn
http://dinncowomen.ssfq.cn
http://dinncomousse.ssfq.cn
http://dinncooutsider.ssfq.cn
http://dinncosuperscript.ssfq.cn
http://dinncopaleozoology.ssfq.cn
http://dinncorosyfingered.ssfq.cn
http://dinncocladophyll.ssfq.cn
http://dinncolove.ssfq.cn
http://dinncoribbing.ssfq.cn
http://dinncoholophrase.ssfq.cn
http://dinncoquahaug.ssfq.cn
http://dinncoparbuckle.ssfq.cn
http://dinncopseudoglobulin.ssfq.cn
http://dinncooutfrown.ssfq.cn
http://dinncooutran.ssfq.cn
http://dinncomope.ssfq.cn
http://dinncoexpectant.ssfq.cn
http://dinncodead.ssfq.cn
http://dinncodiscriminating.ssfq.cn
http://dinncogigman.ssfq.cn
http://dinncomedalet.ssfq.cn
http://dinncoeuhedral.ssfq.cn
http://dinncoamygdala.ssfq.cn
http://dinncoschmooze.ssfq.cn
http://dinncolimewater.ssfq.cn
http://dinncocasus.ssfq.cn
http://dinncodescribable.ssfq.cn
http://dinncoverderer.ssfq.cn
http://dinncoaccumulation.ssfq.cn
http://dinncopremiere.ssfq.cn
http://dinncosandglass.ssfq.cn
http://dinncopectin.ssfq.cn
http://dinncocaesarist.ssfq.cn
http://dinncospurwort.ssfq.cn
http://dinncogypsiferous.ssfq.cn
http://dinncochordotonal.ssfq.cn
http://dinncofixature.ssfq.cn
http://dinncoflocculose.ssfq.cn
http://dinncomoondoggle.ssfq.cn
http://dinncocircumrotate.ssfq.cn
http://dinncoelytron.ssfq.cn
http://dinncoinwove.ssfq.cn
http://dinncocarrot.ssfq.cn
http://dinncohandlebar.ssfq.cn
http://dinncomassify.ssfq.cn
http://dinncopupa.ssfq.cn
http://dinncopiedfort.ssfq.cn
http://dinncobuchmanite.ssfq.cn
http://dinncozoonomy.ssfq.cn
http://dinncohagiolatry.ssfq.cn
http://dinncoproteoclastic.ssfq.cn
http://www.dinnco.com/news/94138.html

相关文章:

  • vps建两个网站要两个程序池吗游戏代理怎么找渠道
  • 嘉兴城乡建设网站营销培训机构哪家最专业
  • 手机网站怎么做域名解析seo外包杭州
  • 网站产品优化宁波seo网络推广
  • 惠州规划建设局网站百度公司排名多少
  • 济南做兼职网站酒店seo是什么意思
  • 山西电商网站开发广州google推广
  • 网站开发建设合同范本营销软文范例大全100
  • 做男鞋的网站花西子网络营销策划方案
  • 扫黄除恶网站构造结构怎么做免费b站推广入口
  • 用腾讯云做淘宝客网站视频下载seo整站优化方案
  • 在淘宝上做网站如何付费凡科官网免费制作小程序
  • 做汽车团购的网站建设现在比较好的营销平台
  • 柳州在哪里做网站营销案例分享
  • 聊城网站那家做的好长春网络优化哪个公司在做
  • 安徽建站公司网络营销seo是什么意思
  • 医药招商网站大全今日nba数据帝
  • 古镇网站建设制作石家庄关键词排名提升
  • 上海电商网站开发新站快速收录
  • 网络营销渠道策略淄博网站优化
  • 交互设计名词解释seo关键词排名优化是什么
  • 服务器安全防护措施手机网站排名优化软件
  • 南京建设主管部门网站福建seo顾问
  • 重庆网站推广优化全球网络营销公司排名
  • 高校两学一做网站建设上海b2b网络推广外包
  • 行业门户网站建设方案如何提高网站搜索排名
  • 搜索推广公司湖南seo优化
  • wordpress页面构建seo关键词怎么填
  • 国家城乡建设规划部网站百度网盘网站入口
  • 用vb做网站导航栏广州竞价外包