微信小程式 歡迎介面
市面上大多數的app都會有一個歡迎介面,以下將示範如何透過微信小程式實現一個歡迎介面。
以下將會依照以下的順序介紹:
佈局的實現
邏輯的實現
樣式的實現
1.佈局的實現
整個佈局使用swiper滑動視圖實現,滑動視圖的每一個item通過一個block塊包裹,塊中包裹的是滑動視圖的每一個item, item中包含image圖片和button按鈕
<swiper indicator-dots="true"> <block wx:for="{{imgs}}" wx:for-index="index"> <swiper-item class="swiper-items" > <image class="swiper-image" src="{{item}}"></image> <button class="button-img" bindtap="start" wx:if="{{index == imgs.length - 1}}" >立即体验</button> </swiper-item> </block> </swiper>
2.邏輯的實現
在data中準備了一個imgs數組,在數組中存放了3個圖片的位址,這裡還有一個start函數,該函數用來監聽介面上button的點擊事件。
wx.navigateTo這個api的作用就是實現介面的跳躍並且有回傳的按鈕,url是用來指定跳躍的介面
Page({ data:{ imgs:[ "http://img.kaiyanapp.com/5edbf92b929f9174e3b69500df52ee21.jpeg?imageMogr2/quality/60", "http://img.kaiyanapp.com/f2c497cb520d8360ef2980ecd0efdee7.jpeg?imageMogr2/quality/60", "http://img.kaiyanapp.com/64f96635ddc425e3be237b5f70374d87.jpeg?imageMogr2/quality/60", ], img:"http://img.kaiyanapp.com/7ff70fb62f596267ea863e1acb4fa484.jpeg", }, start(){ wx.navigateTo({ url: '../home/home' }) // wx.redirectTo({ url: '../index/index' }) }, })
3.樣式的實現
swiper樣式是定義滑動控制的樣式:滑動控制的位置為絕對佈局,寬和高為佔滿整個螢幕
.swiper-image樣式是定義image圖片的樣式:寬和高為佔滿整個螢幕,透明度為0.9
.button-img樣式是定義button按鈕的樣式:位置為絕對佈局,離底部90px,透明度為0.6,..
swiper { /*这个是绝对布局*/ position: absolute; height: 100%; width: 100%; } .swiper-image { height: 100%; width: 100%; /*透明度*/ opacity:0.9; } .button-img{ /*这个是绝对布局*/ position: relative; bottom: 90px; height: 40px; width: 120px; opacity:0.6; }
感謝閱讀,希望能幫助大家,謝謝大家對本站的支持!
更多微信小程式 歡迎介面開發的實例詳解相關文章請關注PHP中文網!