Commit 353734e8 authored by Jeff's avatar Jeff

new components

parent 2dfbdcf1
...@@ -33,14 +33,14 @@ export default { ...@@ -33,14 +33,14 @@ export default {
mounted() { mounted() {
let input = document.getElementById('screenshot-input') let input = document.getElementById('screenshot-input')
let fileBtn = document.getElementById('select-btn') let fileBtn = document.getElementById('select-btn')
fileBtn.addEventListener('click', function() { fileBtn.addEventListener('click', function () {
input.click() input.click()
}) })
let video = document.getElementById('screenshot-video') let video = document.getElementById('screenshot-video')
video.onerror = function(e) { video.onerror = function (e) {
console.log('onerror', e) console.log('onerror', e)
} }
video.addEventListener('loadedmetadata', function(e) { video.addEventListener('loadedmetadata', function (e) {
console.log('loadedmetadata', e) console.log('loadedmetadata', e)
//webkitVideoDecodedByteCount //webkitVideoDecodedByteCount
if (e.target.webkitVideoDecodedByteCount < 1) { if (e.target.webkitVideoDecodedByteCount < 1) {
...@@ -76,21 +76,21 @@ export default { ...@@ -76,21 +76,21 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.screenshot { .screenshot {
width: 100%; width: 100%;
height: 100%; height: 100%;
margin: 30px; margin: 30px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.content { .content {
height: 90%; height: 90%;
margin: 20px 30px; margin: 20px 30px;
background-color: lightcyan; background-color: lightcyan;
} }
.operate-area { .operate-area {
#select-btn { #select-btn {
width: 200px; width: 200px;
height: 100px; height: 100px;
}
} }
}
} }
</style> </style>
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