本文實(shí)例為大家分享了微信小程序定時(shí)拍照的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)建站從2013年成立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都做網(wǎng)站、成都網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元中山做網(wǎng)站,已為上家服務(wù),為中山各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:028-86922220
在某些進(jìn)行簽到的場(chǎng)景,為了防止用戶選擇相冊(cè)的照片或者不實(shí)時(shí)拍照,設(shè)置相機(jī)倒計(jì)時(shí)自動(dòng)拍照。
一、首先是視圖層index.wxml,視圖層主要負(fù)責(zé)顯示組件和圖片。
二、邏輯層index.js,調(diào)用倒計(jì)時(shí)函數(shù)并且調(diào)用攝像頭拍照并保存圖片。
//index.js const app = getApp() Page({ data: { userInfo: {}, counting: false//倒計(jì)時(shí) }, onLoad: function () { this.daojishi();//一進(jìn)來就拍照倒計(jì)時(shí) this.ctx = wx.createCameraContext()//創(chuàng)建攝像頭對(duì)象 }, //倒計(jì)時(shí) daojishi: function () { var that = this; if (!that.data.counting) { //開始倒計(jì)時(shí)5秒 countDown(that, 5); } } }) //倒計(jì)時(shí)函數(shù) 在page外 function countDown(that, count) { if (count == 0) { //等于0時(shí)拍照 that.ctx.takePhoto({ quality: 'high', success: (res) => { that.setData({ src: res.tempImagePath }) wx.showToast({ title: '拍照完成', }) } }) that.setData({ counting: false }) return; } wx.showLoading({//加載時(shí)顯示倒計(jì)時(shí) title: '拍照倒計(jì)時(shí)'+count+'秒', }) setTimeout(function () { wx.hideLoading() }, 1000) that.setData({ counting: true, }) setTimeout(function () { count--; countDown(that, count); }, 1000); }
主要實(shí)現(xiàn)就是這樣。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。