小程序模板网

微信小程序全局配置与轮播图

发布时间:2018-04-18 09:49 所属栏目:小程序开发教程

作者:汉堡请不要欺负面条,来自原文地址

 

一:全局配置

一.app.json 
使用app.json文件来对微信小程序进行全局配置,决定页面文件的路径、窗口表现、设置网络超时时间、设置多 tab 等. 

注意在.json不能注释,否则会出错。

二.工具栏tabBar 
如果我们的小程序是一个多 tab 应用(客户端窗口的底部或顶部有 tab 栏可以切换页面),那么我们可以通过 tabBar 配置项指定 tab 栏的表现,以及 tab 切换时显示的对应页面。 
tabBar 是一个数组,只能配置最少2个、最多5个 tab,tab 按数组的顺序排序 

app.json中

 

  1. {
  2. "pages": ["pages/index/index",
  3. "pages/coming/coming",
  4. "pages/search/search",
  5. "pages/top/top"
  6. ],
  7. "window": {
  8. "navigationBarBackgroundColor": "#47a86c",
  9. "navigationBarTextStyle": "white",
  10. "navigationBarTitleText": "小程序案例",
  11. "backgroundColor": "#fff",
  12. "backgroundTextStyle": "dark"
  13. },
  14. "tabBar": {
  15. "color": "#686868",
  16. "selectedColor": "#47a86c",
  17. "backgroundColor": "#fff",
  18. "list": [{
  19. "pagePath": "pages/index/index",
  20. "iconPath": "dist/images/popular_icon.png",
  21. "selectedIconPath": "dist/images/popular_active_icon.png",
  22. "text": "热映"
  23. },
  24. {
  25. "pagePath": "pages/coming/coming",
  26. "iconPath": "dist/images/coming_icon.png",
  27. "selectedIconPath": "dist/images/coming_active_icon.png",
  28. "text": "待映"
  29. },
  30. {
  31. "pagePath": "pages/search/search",
  32. "iconPath": "dist/images/search_icon.png",
  33. "selectedIconPath": "dist/images/search_active_icon.png",
  34. "text": "搜索"
  35. },
  36. {
  37. "pagePath": "pages/top/top",
  38. "iconPath": "dist/images/top_icon.png",
  39. "selectedIconPath": "dist/images/top_active_icon.png",
  40. "text": "口碑"
  41. }]
  42. },
  43. "networkTimeout": {
  44. "request": 10000,
  45. "downloadFile": 10000
  46. },
  47. "debug": true
  48. }

图标可以放在与pages同级,文件命名可是自定。 

app.json中其他属性:可以查看手册,里面有详解

 

二:轮播图

1.编写页面结构  pages/index/index.wxml

 

  1. <!--index.wxml-->
  2. <view>
  3. <swiper indicator-dots="{{indicatorDots}}"
  4. autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
  5. <block wx:for="{{imgUrls}}">
  6. <swiper-item>
  7. <navigator url="{{item.link}}" hover-class="navigator-hover">
  8. <image src="{{item.url}}" class="slide-image" width="355" height="150"/>
  9. </navigator>
  10. </swiper-item>
  11. </block>
  12. </swiper>
  13. </view>

注意:不要在view中加css设置:display: flex;否则效果呈现不了  2.设置数据  了解属性,方可设置 

  在index.js中设置数据

 

  1. //index.js
  2. //获取应用实例
  3. var app = getApp()
  4. Page({
  5. data: {
  6. imgUrls: [ {
  7. link:'/pages/index/index',
  8. url:'../uploads/a01.jpg'
  9. },{
  10. link:'/pages/logs/logs',
  11. url:'../uploads/a02.jpg'
  12. },{
  13. link:'/pages/user/user',
  14. url:'../uploads/a03.jpg'
  15. }
  16. ],
  17. indicatorDots: true,
  18. autoplay: true,
  19. interval: 5000,
  20. duration: 1000
  21. }
  22. })

3.效果



易优小程序(企业版)+灵活api+前后代码开源 码云仓库:starfork
本文地址:https://www.eyoucms.com/wxmini/doc/course/23621.html 复制链接 如需定制请联系易优客服咨询:800182392 点击咨询
QQ在线咨询