微信小程序 wxapp导航 navigator
最近微信小程序非常火,朋友圈,微博,论坛等地方都在刷屏,因为这是搞前端的春天,前端工程师可以赚一把了,所以业余就学习了微信小程序的知识,这里记录下 :
navigator
注:navigator-hover默认为{background-color:rgba(0,0,0,0.1);opacity:0.7;},
示例代码:
/** wxss **//** 修改默认的navigator点击态 **/.navigator-hover{ color:blue;}/** 自定义其他点击态样式类 **/.other-navigator-hover{ color:red;}
跳转到新页面 在当前页打开
{{title}} 点击左上角返回回到之前页面
{{title}} 点击左上角返回回到上级页面
// redirect.js navigator.jsPage({ onLoad: function(options) { this.setData({ title: options.title }) }})
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
更多微信小程序 wxapp导航 navigator详解相关文章请关注PHP中文网!