#開篇語
寒假髮了一篇練手文章,不出意外地火了: 《簡年15: 微信小程式(有始有終,全部代碼)開發---跑步App+音樂播放器》 後來又發了BUG修復的版本,出乎意料的火了: 簡年18: 微信小程式(有始有終,全部程式碼)開發---跑步App+音樂播放器Bug修復後來又新增了一個模組,嗯,這個也火了:微信小程式(有始有終,全部程式碼)開發--- 新增模組: 圖片選取以及拍照功能現在開學了,我又寫了點東西: 微信小程式(有始有終,全部程式碼)開發--- 新增【錄音】以及UI改進
#內文####一、UI改進
本來想要就此封筆,但最近覺得要找點事情幹,所以還是寫一寫吧。同時調整了下以前的一些程式碼,例如一些的UI設計增進了。程式碼已全部更新於Github,歡迎大家去查看: https://github.com/HustWolfzzb/WeChat-Fucking_Running.git
更新之後的頁面更加漂亮了。新增了一個錄音的模組,由於主頁index.wxml只能放五個導航條,所以就只能整合在最後一個影音裡面了。不然的話無處安放也是討嫌!
更新的程式碼如下,是
picture.js
這個檔案下作的變更:
//index.js
//获取应用实例
var app = getApp()
Page({
data: {
source:"http://159.203.250.111/Carly.png",
},
listenerButtonChooseImage: function() {
var that = this;
wx.chooseImage({
count: 1,
//original原图,compressed压缩图
sizeType: ['original'],
//album来源相册 camera相机
sourceType: ['album', 'camera'],
//成功时会回调
success: function(res) {
//重绘视图
that.setData({
source: res.tempFilePaths,
})
}
})
},
yulan:function(){
var that=this;
wx.previewImage({
current: 'http://119.29.74.46/myphoto/5.jpg', // 当前显示图片的链接,不填则默认为 urls 的第一张
urls: [ 'http://119.29.74.46/myphoto/0.jpg',
'http://119.29.74.46/myphoto/1.jpg',
'http://119.29.74.46/myphoto/2.jpg',
'http://119.29.74.46/myphoto/3.jpg',
'http://119.29.74.46/myphoto/4.jpg',
'http://119.29.74.46/myphoto/5.jpg',
'http://119.29.74.46/myphoto/6.jpg',
'http://119.29.74.46/myphoto/7.jpg'],
success: function(res){
},
fail: function() {
// fail
},
complete: function() {
// complete
}
})
},
Startrecord:function(){
wx.startRecord({
success: function(res) {
var tempFilePath = res.tempFilePath
wx.playVoice({
filePath: tempFilePath
})
setTimeout(function() {
//暂停播放
wx.pauseVoice()
}, 5000)
}
})
setTimeout(function(){
wx.stopVoice()
}, 5000)
},
Stoprecord:function(){
var that=this;
wx.stopRecord({
success: function(res){
// succes
},
fail: function() {
// fail
},
complete: function() {
// complete
}
})
},
onShareAppMessage: function () {
return {
title: '欢迎使用颜大傻牌跑步计',
desc: '将你的战绩分享到~~~',
path: '/page/picture/picture.js'
}
},
})
另外還有在wxml中加入修改:
<view class="header" style="flex-direction:row;">
<!--通过数据绑定的方式动态获取js数据-->
<image src="{{source}}" mode="fulltoFill" class="pic"/>
<!--监听按钮-->
<button type="primary" bindtap="listenerButtonChooseImage" class="button_anniu">点击我选择相册</button>
<button bindtap="yulan"><image src="/resources/yulan.png" class="swiper"></image></button>
<view>
<button bindtap="Startrecord" class="button_anniu"> 开始录音 </button>
<button bindtap="Stoprecord" class="button_anniu"> 停止录音</button>
</view>
</view>
另外,不好意思的聲明下:錄音功能是做出來了,但是調試的時候,錄音是可以完美進行的,但是涉及到播放控制的時候我就直接GG了。 API一點都不配合我。
####二、UI改進
UI一直是我的心頭病,沒辦法,強迫症一出來,幾頭牛都拉不回來。不把尺寸搞得誤差在像素級根本不能讓我心安。所以這次改了幾個地方。然後感覺好多了。
程式碼更新如下:
<music.wxml>
<view class="header" style="flex-direction:row;">
<swiper class="swiper" indicator-dots="{{indicatorDots}}"
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" width="100" height="10">
<swiper-item wx:for="{{imgUrls}}">
<image src="{{item}}" class="slide-image" class="banner" mode="fullToFill"/>
</swiper-item>
</swiper>
<view class="img">
<image src="/resources/Carly.png" class="pic" ></image>
</view>
<view class="img1">
<block wx:for="{{song}}" wx:key="id" class="audio">
<block wx:if="{{item.musicid==count}}">
<audio poster="{{item.poster}}" name="{{item.name}}" author="{{item.author}}" src="{{item.src}}" id="myAudio" controls="true">
<view style="display:flex;flex-direction: row;">
<button type="primary" bindtap="audioPlay" class="button_anniu">Start</button>
<button type="primary" bindtap="audioPause" class="button_anniu">Pause</button>
<button type="primary" bindtap="audio14" class="button_anniu">To14s</button>
<button type="primary" bindtap="audioStart" class="button_anniu">Stop</button>
</view>
<view style="display:flex;flex-direction: row;">
<button type="primary" bindtap="NextMusic" class="button_anniu"> Next </button>
<button type="primary" bindtap="LastMusic" class="button_anniu">Last</button>
</view>
</audio>
</block>
</block>
</view>
</view>
《music.wxss》
.banner{
width: 750rpx;
height: 80rpx;
position: center;
}
.img{
position: center;
padding-left: 100rpx;
padding-right: 100rpx;
}
.img1{
position: center;
padding-left: 75rpx;
}
.pic{
width: 550rpx;
height: 640rpx;
}
.button_anniu{
width: 150rpx;
height: 100rpx;
margin: 50rpx auto;
display: flex;
}
.swiper{
width: 750rpx;
height: 80rpx;
position: center;
}
首頁的改進,我覺得很好看咯! !而且加了滾條,可以滾出三個圖。
《index.wxml》
<view class="index">
<!--标题-->
<view class="header" >
<view style="flex-direction:row;"> <image class="icon" src="/resources/fuckrun.png" mode="aspectFill"/></view>
<view class="bigTitle">Fucking Running</view>
<view class="desc">The First Program of HustWolf and XNC</view>
</view>
<view class="body">
<view class="widget">
<block wx:for="{{pageNames}}">
<view class="widgets__item">
<navigator class="navigator-hover" url="{{item.id}}/{{item.id}}">{{item.name}}</navigator>
</view>
</block>
</view>
</view>
</view>
<scroll-view scroll-y="true" style="height: 630rpx;" bindscrolltoupper="upper" bindscrolltolower="lower" bindscroll="scroll" scroll-into-view="{{toView}}" scroll-top="{{scrollTop}}">
<image class="pic" src="/resources/run2.png" mode="aspectFill"/>
<image class="pic" src="/resources/run1.png" mode="aspectFill"/>
<image class="pic" src="/resources/run0.png" mode="aspectFill"/>
</scroll-view>
還是需要改進啊。沒辦法了。我現在是下午七點三十四,但我還沒吃飯,有點餓!所以我待會還要走到東邊去,大概半個小時,然後再去我親愛的,親愛的韻苑大酒店吃一頓,如果有黃燜雞米飯就大運臨頭了,沒有的話吃一份滷鴨飯就行了。 。
#結束語
小程式算是假期的一個調劑吧,不過,似乎被我成功的帶到大三下了。主要是不能持續產出,我會鬆懈,所以寒假的氛圍其實還蠻好的。在學校就貝格忠東喜支配了。心塞,雖然效率高了不少,但還是想家了。最想家的一次。
今天是正式開學的第一天,我得證明下:
#個人宣言
知識傳遞力量,科技無國界,文化改變生活!