您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了微信小程序定時拍照的具體代碼,供大家參考,具體內(nèi)容如下
在某些進(jìn)行簽到的場景,為了防止用戶選擇相冊的照片或者不實(shí)時拍照,設(shè)置相機(jī)倒計時自動拍照。
一、首先是視圖層index.wxml,視圖層主要負(fù)責(zé)顯示組件和圖片。
<!--index.wxml--> <view class="userinfo-login"> <view class="page-body"> <view class="page-body-wrapper"> <view wx:if="{{src}}"></view> <!-- 如果存在已經(jīng)拍好的照片就不再顯示調(diào)用攝像頭的組件--> <view wx:else> <camera device-position="back" flash="off" binderror="error" ></camera> <!-- 調(diào)用攝像頭的組件--> </view> <image wx:if="{{src}}" mode="widthFix" src="{{src}}"></image> <!-- 顯示拍好的照片--> </view> </view> </view>
二、邏輯層index.js,調(diào)用倒計時函數(shù)并且調(diào)用攝像頭拍照并保存圖片。
//index.js const app = getApp() Page({ data: { userInfo: {}, counting: false//倒計時 }, onLoad: function () { this.daojishi();//一進(jìn)來就拍照倒計時 this.ctx = wx.createCameraContext()//創(chuàng)建攝像頭對象 }, //倒計時 daojishi: function () { var that = this; if (!that.data.counting) { //開始倒計時5秒 countDown(that, 5); } } }) //倒計時函數(shù) 在page外 function countDown(that, count) { if (count == 0) { //等于0時拍照 that.ctx.takePhoto({ quality: 'high', success: (res) => { that.setData({ src: res.tempImagePath }) wx.showToast({ title: '拍照完成', }) } }) that.setData({ counting: false }) return; } wx.showLoading({//加載時顯示倒計時 title: '拍照倒計時'+count+'秒', }) setTimeout(function () { wx.hideLoading() }, 1000) that.setData({ counting: true, }) setTimeout(function () { count--; countDown(that, count); }, 1000); }
主要實(shí)現(xiàn)就是這樣。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。