Commit 353734e8 authored by Jeff's avatar Jeff

new components

parent 2dfbdcf1
......@@ -33,14 +33,14 @@ export default {
mounted() {
let input = document.getElementById('screenshot-input')
let fileBtn = document.getElementById('select-btn')
fileBtn.addEventListener('click', function() {
fileBtn.addEventListener('click', function () {
input.click()
})
let video = document.getElementById('screenshot-video')
video.onerror = function(e) {
video.onerror = function (e) {
console.log('onerror', e)
}
video.addEventListener('loadedmetadata', function(e) {
video.addEventListener('loadedmetadata', function (e) {
console.log('loadedmetadata', e)
//webkitVideoDecodedByteCount
if (e.target.webkitVideoDecodedByteCount < 1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment