<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
1.一個漂浮的球,在全螢幕幕中自由移動遇到邊邊角角自動改變方向 ,自帶動畫效果
2.錄音功能,可以錄製使用者的聲音,可以下載為任意格式的音訊檔到本地,也可以通過二進位制流發給後端
由於後端要聲音檔案格式wav或者pcm,取樣率16000,所以我改了組態檔,稍後我會介紹在哪裡改,改什麼什麼樣都是可以的。
注:程式碼我已經封裝成元件了,下方的程式碼可以直接稍作修改後拿去用,需要修改的地方我以截圖的形式貼出來了。
<template> <!--懸浮小廣告樣式的提示資訊--> <div id="thediv" ref="thediv" style="position: absolute; z-index: 111; left: 0; top: 0" @mouseover="clearFdAd" @mouseout="starFdAd" > <div style=" overflow: hidden; cursor: pointer; text-align: right; font-size: 0.0625rem; color: #999999; " > <div @click="demo" style="position: relative"> <!-- 錄音元件 --> <div v-show="isAudio"> <Audio style="position: absolute; top: 10%; right: 20%"></Audio> </div> <div class="loader"> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> </div> <!-- <img src="@/assets/common/loginlogo.png" alt="" srcset="" /> --> </div> </div> <!-- <a href="http://xxxxxx" target="_blank"" ><img src="../../assets/images/tips.png" width="320" border="0" /></a> --> </div> </template> <script> var interval export default { data () { return { isAudio: false, xPos: 0, yPos: 0, xin: true, yin: true, step: 1, delay: 18, height: 0, Hoffset: 0, Woffset: 0, yon: 0, xon: 0, pause: true, thedivShow: true, } }, mounted () { interval = setInterval(this.changePos, this.delay) }, methods: { demo () { this.isAudio = !this.isAudio }, changePos () { let width = document.documentElement.clientWidth let height = document.documentElement.clientHeight this.Hoffset = this.$refs.thediv.clientHeight//獲取元素高度 this.Woffset = this.$refs.thediv.offsetWidth // 捲動部分跟隨螢幕捲動 // this.$refs.thediv.style.left = (this.xPos + document.body.scrollLeft + document.documentElement.scrollLeft) + "px"; // this.$refs.thediv.style.top = (this.yPos + document.body.scrollTop + document.documentElement.scrollTop) + "px"; // 捲動部分不隨螢幕捲動 this.$refs.thediv.style.left = this.xPos + document.body.scrollLeft - 400 + "px" this.$refs.thediv.style.top = this.yPos + document.body.scrollTop + "px" if (this.yon) { this.yPos = this.yPos + this.step } else { this.yPos = this.yPos - this.step } if (this.yPos < 0) { this.yon = 1 this.yPos = 0 } if (this.yPos >= height - this.Hoffset) { this.yon = 0 this.yPos = height - this.Hoffset } if (this.xon) { this.xPos = this.xPos + this.step } else { this.xPos = this.xPos - this.step } if (this.xPos < 0) { this.xon = 1 this.xPos = 0 } if (this.xPos >= width - this.Woffset) { this.xon = 0 this.xPos = width - this.Woffset } }, clearFdAd () { clearInterval(interval) }, starFdAd () { interval = setInterval(this.changePos, this.delay) }, }, }; </script> <style lang="scss" scoped> #thediv { z-index: 100; position: absolute; top: 0.224rem; left: 0.0104rem; height: 0.9583rem; width: 1.4583rem; overflow: hidden; img { width: 100%; height: 100%; } } // 以下是css圖示 .loader { width: 100px; height: 100px; padding: 30px; font-size: 10px; background-color: #91cc75; border-radius: 50%; border: 8px solid #20a088; display: flex; align-items: center; justify-content: space-between; animation: loader-animate 1.5s infinite ease-in-out; } @keyframes loader-animate { 45%, 55% { transform: scale(1); } } .loader > span { width: 5px; height: 50%; background-color: #fff; transform: scaleY(0.05) translateX(-5px); animation: span-animate 1.5s infinite ease-in-out; animation-delay: calc(var(--n) * 0.05s); } @keyframes span-animate { 0%, 100% { transform: scaleY(0.05) translateX(-5px); } 15% { transform: scaleY(1.2) translateX(10px); } 90%, 100% { background-color: hotpink; } } .loader > span:nth-child(1) { --n: 1; } .loader > span:nth-child(2) { --n: 2; } .loader > span:nth-child(3) { --n: 3; } .loader > span:nth-child(4) { --n: 4; } .loader > span:nth-child(5) { --n: 5; } .loader > span:nth-child(6) { --n: 6; } .loader > span:nth-child(7) { --n: 7; } .loader > span:nth-child(8) { --n: 8; } .loader > span:nth-child(9) { --n: 9; } .loader > span:nth-child(10) { --n: 10; } </style>
這個元件依賴另一個檔案recorder.js,在最下方貼出來了。
<template> <div> <el-button @click="myrecording" style="margin-left: 1rem">{{ time }}</el-button> <el-button @click="startPlay" style="margin-left: 1rem">{{ playing ? "播放" : "暫停" }}</el-button> <el-button @click="delvioce" style="margin-left: 1rem; color: black" >刪除</el-button > <audio v-if="fileurl" :src="fileurl" controls="controls" style="display: none" ref="audio" id="myaudio" ></audio> </div> </template> <script> // 引入recorder.js import recording from "@/utils/recorder" export default { data () { return { RecordingSwitch: true, //錄音開關 files: "", //語音檔案 num: 60, // 按住說話時間 recorder: null, fileurl: "", //語音URL interval: "", //定時器 time: "點選說話(60秒)", playing: true, } }, methods: { // 點選錄制 myrecording () { if (this.files === "") { if (this.RecordingSwitch) { this.Start() } else { this.End() } } else if (this.time === "點選重錄(60秒)") { this.files = "" this.Start() } this.RecordingSwitch = !this.RecordingSwitch }, // 點選播放 startPlay () { console.dir(this.$refs.audio, '--------------------') if (this.playing) { this.$refs.audio.play() } else { this.$refs.audio.pause() } this.playing = !this.playing }, // 刪除語音 delvioce () { this.fileurl = "" this.files = "" this.num = 60 this.time = "點選說話(60秒)" }, // 清除定時器 clearTimer () { if (this.interval) { this.num = 60 clearInterval(this.interval) } }, // 開始錄製 Start () { this.clearTimer() recording.get((rec) => { // 當首次按下時,要獲取瀏覽器的麥克風許可權,所以這時要做一個判斷處理 if (rec) { this.recorder = rec this.interval = setInterval(() => { if (this.num <= 0) { this.recorder.stop() this.num = 60 this.End() } else { this.time = "點選結束(" + this.num + "秒)" this.recorder.start() this.num-- } }, 1000) } }) }, // 停止錄製 End () { this.clearTimer() if (this.recorder) { this.recorder.stop() // 重置說話時間 this.num = 60 this.time = "點選重錄(60秒)" // 獲取語音二進位制檔案 let bold = this.recorder.getBlob() // 將獲取的二進位制物件轉為二進位制檔案流 let files = new File([bold], "test.wav", { type: "audio/wav", lastModified: Date.now(), }) this.files = files console.log(this.files, '----------', bold, '---------------', this.recorder) //獲取音訊時長 let fileurl = URL.createObjectURL(files) this.fileurl = fileurl let audioElement = new Audio(fileurl) let duration audioElement.addEventListener("loadedmetadata", function (_event) { duration = audioElement.duration console.log("視訊時長:" + duration, files) }) var downloadAnchorNode = document.createElement('a') downloadAnchorNode.setAttribute("href", fileurl) downloadAnchorNode.setAttribute("download", 'ssss') downloadAnchorNode.click() downloadAnchorNode.remove() this.$message.success("正在下載中,請稍後...") } }, }, }; </script> <style lang="less" > </style>
// 相容 window.URL = window.URL || window.webkitURL navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia let HZRecorder = function (stream, config) { config = config || {} config.sampleBits = config.sampleBits || 8 // 取樣數位 8, 16 config.sampleRate = config.sampleRate || (16000) // 取樣率(1/6 44100) let context = new (window.webkitAudioContext || window.AudioContext)() let audioInput = context.createMediaStreamSource(stream) let createScript = context.createScriptProcessor || context.createJavaScriptNode let recorder = createScript.apply(context, [4096, 1, 1]) let audioData = { size: 0, // 錄音檔案長度 buffer: [], // 錄音快取 inputSampleRate: context.sampleRate, // 輸入取樣率 inputSampleBits: 16, // 輸入取樣數位 8, 16 outputSampleRate: config.sampleRate, // 輸出取樣率 oututSampleBits: config.sampleBits, // 輸出取樣數位 8, 16 input: function (data) { this.buffer.push(new Float32Array(data)) this.size += data.length }, compress: function () { // 合併壓縮 // 合併 let data = new Float32Array(this.size) let offset = 0 for (let i = 0; i < this.buffer.length; i++) { data.set(this.buffer[i], offset) offset += this.buffer[i].length } // 壓縮 let compression = parseInt(this.inputSampleRate / this.outputSampleRate) let length = data.length / compression let result = new Float32Array(length) let index = 0; let j = 0 while (index < length) { result[index] = data[j] j += compression index++ } return result }, encodeWAV: function () { let sampleRate = Math.min(this.inputSampleRate, this.outputSampleRate) let sampleBits = Math.min(this.inputSampleBits, this.oututSampleBits) let bytes = this.compress() let dataLength = bytes.length * (sampleBits / 8) let buffer = new ArrayBuffer(44 + dataLength) let data = new DataView(buffer) let channelCount = 1// 單聲道 let offset = 0 let writeString = function (str) { for (let i = 0; i < str.length; i++) { data.setUint8(offset + i, str.charCodeAt(i)) } } // 資源交換檔案識別符號 writeString('RIFF'); offset += 4 // 下個地址開始到檔案尾總位元組數,即檔案大小-8 data.setUint32(offset, 36 + dataLength, true); offset += 4 // WAV檔案標誌 writeString('WAVE'); offset += 4 // 波形格式標誌 writeString('fmt '); offset += 4 // 過濾位元組,一般為 0x10 = 16 data.setUint32(offset, 16, true); offset += 4 // 格式類別 (PCM形式取樣資料) data.setUint16(offset, 1, true); offset += 2 // 通道數 data.setUint16(offset, channelCount, true); offset += 2 // 取樣率,每秒樣本數,表示每個通道的播放速度 data.setUint32(offset, sampleRate, true); offset += 4 // 波形資料傳輸率 (每秒平均位元組數) 單聲道×每秒資料位數×每樣本資料位/8 data.setUint32(offset, channelCount * sampleRate * (sampleBits / 8), true); offset += 4 // 快資料調整數 取樣一次佔用位元組數 單聲道×每樣本的資料位數/8 data.setUint16(offset, channelCount * (sampleBits / 8), true); offset += 2 // 每樣本資料位數 data.setUint16(offset, sampleBits, true); offset += 2 // 資料識別符號 writeString('data'); offset += 4 // 取樣資料總數,即資料總大小-44 data.setUint32(offset, dataLength, true); offset += 4 // 寫入取樣資料 if (sampleBits === 8) { for (let i = 0; i < bytes.length; i++, offset++) { let s = Math.max(-1, Math.min(1, bytes[i])) let val = s < 0 ? s * 0x8000 : s * 0x7FFF val = parseInt(255 / (65535 / (val + 32768))) data.setInt8(offset, val, true) } } else { for (let i = 0; i < bytes.length; i++, offset += 2) { let s = Math.max(-1, Math.min(1, bytes[i])) data.setInt16(offset, s < 0 ? s * 0x8000 : s * 0x7FFF, true) } } return new Blob([data], { type: 'audio/mp3' }) } } // 開始錄音 this.start = function () { audioInput.connect(recorder) recorder.connect(context.destination) } // 停止 this.stop = function () { recorder.disconnect() } // 獲取音訊檔 this.getBlob = function () { this.stop() return audioData.encodeWAV() } // 回放 this.play = function (audio) { let downRec = document.getElementById('downloadRec') downRec.href = window.URL.createObjectURL(this.getBlob()) downRec.download = new Date().toLocaleString() + '.mp3' audio.src = window.URL.createObjectURL(this.getBlob()) } // 上傳 this.upload = function (url, callback) { let fd = new FormData() fd.append('audioData', this.getBlob()) let xhr = new XMLHttpRequest() /* eslint-disable */ if (callback) { xhr.upload.addEventListener('progress', function (e) { callback('uploading', e) }, false) xhr.addEventListener('load', function (e) { callback('ok', e) }, false) xhr.addEventListener('error', function (e) { callback('error', e) }, false) xhr.addEventListener('abort', function (e) { callback('cancel', e) }, false) } /* eslint-disable */ xhr.open('POST', url) xhr.send(fd) } // 音訊採集 recorder.onaudioprocess = function (e) { audioData.input(e.inputBuffer.getChannelData(0)) // record(e.inputBuffer.getChannelData(0)); } } // 丟擲異常 HZRecorder.throwError = function (message) { alert(message) throw new function () { this.toString = function () { return message } }() } // 是否支援錄音 HZRecorder.canRecording = (navigator.getUserMedia != null) // 獲取錄音機 HZRecorder.get = function (callback, config) { if (callback) { if (navigator.getUserMedia) { console.log(navigator) navigator.getUserMedia( { audio: true } // 只啟用音訊 , function (stream) { let rec = new HZRecorder(stream, config) callback(rec) } , function (error) { console.log(error) switch (error.code || error.name) { case 'PERMISSION_DENIED': case 'PermissionDeniedError': HZRecorder.throwError('使用者拒絕提供資訊。') break case 'NOT_SUPPORTED_ERROR': case 'NotSupportedError': HZRecorder.throwError('瀏覽器不支援硬體裝置。') break case 'MANDATORY_UNSATISFIED_ERROR': case 'MandatoryUnsatisfiedError': HZRecorder.throwError('無法發現指定的硬體裝置。') break default: HZRecorder.throwError('無法開啟麥克風。異常資訊:' + (error.code || error.name)) break } }) } else { HZRecorder.throwErr('當前瀏覽器不支援錄音功能。'); return } } } export default HZRecorder
以上就是Vue實現懸浮框自由移動+錄音功能的範例程式碼的詳細內容,更多關於Vue懸浮框移動 錄音的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45