武装少女在线观看高清完整版免费,丝袜+亚洲区,少妇被cao高潮呻吟声,午夜伦情电午夜伦情电影,日日躁夜夜躁狠狠躁

小程序模板網(wǎng)

微信小程序快速開(kāi)發(fā)-食堂菜單案例

發(fā)布時(shí)間:2018-04-21 09:49 所屬欄目:小程序開(kāi)發(fā)教程

(1)這是目錄結(jié)構(gòu)。 

(2)只寫(xiě)了一個(gè)index頁(yè)面。

——這個(gè)頁(yè)面的布局分為上下兩部分。上面一部分是一個(gè)view,里面嵌套了3個(gè)view,用來(lái)切換tab的。

——下面是內(nèi)容區(qū)域。用了小程序的swiper控件,swiper控件里面放置的是scroll-view控件。這里面設(shè)置的高度用的是百分比,這存在一定的問(wèn)題。不如CSS3可以混用百分比和數(shù)值來(lái)的方便,雖然這種方式存在兼容性問(wèn)題。

——index.wxml。

 

				
  1. <view class="recipe_tabs">
  2. <view class="recipe_tab {{currentTab==0 ? 'recipe_tab_active' : ''}}" data-current="0" bindtap="swipeContent">早餐</view>
  3. <view class="recipe_tab {{currentTab==1 ? 'recipe_tab_active' : ''}}" data-current="1" bindtap="swipeContent">午餐</view>
  4. <view class="recipe_tab {{currentTab==2 ? 'recipe_tab_active' : ''}}" data-current="2" bindtap="swipeContent">咖吧</view>
  5. </view>
  6.  
  7. <swiper current="{{currentTab}}" class="swiper_container" bindchange="swiperChange">
  8. <swiper-item>
  9. <scroll-view scroll-y style="height:100%">
  10. <view class="recipe_cell" wx:for="{{breakfests}}">
  11. <image class="recipe_img" src="{{item.RECIPE_IMG}}"></image>
  12. <view class="recipe_name">{{item.RECIPE_NAME}}</view>
  13. </view>
  14. </scroll-view>
  15. </swiper-item>
  16. <swiper-item>
  17. <scroll-view scroll-y style="height:100%">
  18. <view class="recipe_cell" wx:for="{{lunches}}">
  19. <image class="recipe_img" src="{{item.RECIPE_IMG}}"></image>
  20. <view class="recipe_name">{{item.RECIPE_NAME}}</view>
  21. </view>
  22. </scroll-view>
  23. </swiper-item>
  24. <swiper-item>
  25. <scroll-view scroll-y style="height:100%">
  26. <view class="recipe_cell" wx:for="{{desserts}}">
  27. <image class="recipe_img" src="{{item.RECIPE_IMG}}"></image>
  28. <view class="recipe_name">{{item.RECIPE_NAME}}</view>
  29. </view>
  30. </scroll-view>
  31. </swiper-item>
  32. </swiper>

(3)樣式?jīng)]什么好說(shuō)的,index.wxss。

/index.wxss/

 

				
  1. page{
  2. background-color: #EEEEEE;
  3. height: 100%;
  4. }
  5.  
  6. /* recipe_tab */
  7. .recipe_tabs{
  8. background-color: #FFFFFF;
  9. height: 7%;
  10. }
  11. .recipe_tab{
  12. display: inline-block;


易優(yōu)小程序(企業(yè)版)+靈活api+前后代碼開(kāi)源 碼云倉(cāng)庫(kù):starfork
本文地址:http://www.kknew.com.cn/wxmini/doc/course/23853.html 復(fù)制鏈接 如需定制請(qǐng)聯(lián)系易優(yōu)客服咨詢: 點(diǎn)擊咨詢
在線客服
易小優(yōu)
轉(zhuǎn)人工 ×