Commit c5cccb96 authored by gaobowen's avatar gaobowen

ss

parent bf8c6248
...@@ -32,21 +32,21 @@ export default { ...@@ -32,21 +32,21 @@ export default {
<style lang="scss"> <style lang="scss">
#app { #app {
font-family: Avenir, Helvetica, Arial, sans-serif; font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
text-align: center; text-align: center;
color: #2c3e50; color: #2c3e50;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100vh; height: 100vh;
position: relative; position: relative;
} }
.body-container { .body-container {
flex: 1; flex: 1;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
overflow: hidden; overflow: hidden;
} }
</style> </style>
...@@ -35,11 +35,11 @@ export default { ...@@ -35,11 +35,11 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
/* @import url(); 引入css类 */ /* @import url(); 引入css类 */
.comp-commonheader { .comp-commonheader {
width: 100%; width: 100%;
height: 100px; height: 100px;
border: 1px solid pink; border: 1px solid pink;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-start; justify-content: flex-start;
} }
</style> </style>
...@@ -22,10 +22,10 @@ export default { ...@@ -22,10 +22,10 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.modal-layer { .modal-layer {
position: absolute; position: absolute;
left: 0; left: 0;
top: 0; top: 0;
width: 0; width: 0;
height: 0; height: 0;
} }
</style> </style>
...@@ -17,8 +17,8 @@ export default { ...@@ -17,8 +17,8 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
/* @import url(); 引入css类 */ /* @import url(); 引入css类 */
.comp-rightpanel { .comp-rightpanel {
width: 150px; width: 150px;
height: 100%; height: 100%;
border: 1px solid skyblue; border: 1px solid skyblue;
} }
</style> </style>
...@@ -31,22 +31,22 @@ export default { ...@@ -31,22 +31,22 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
/* @import url(); 引入css类 */ /* @import url(); 引入css类 */
.comp-sidenav { .comp-sidenav {
padding: 30px; padding: 30px;
// width: 100px; // width: 100px;
border: 1px solid skyblue; border: 1px solid skyblue;
height: 100%; height: 100%;
// display: flex; // display: flex;
a { a {
font-weight: bold; font-weight: bold;
color: #2c3e50; color: #2c3e50;
display: inline-block; display: inline-block;
width: 100%; width: 100%;
padding: 10px 0; padding: 10px 0;
&.router-link-exact-active { &.router-link-exact-active {
color: #42b983; color: #42b983;
}
} }
}
} }
</style> </style>
...@@ -10,13 +10,23 @@ ...@@ -10,13 +10,23 @@
></video> ></video>
</div> </div>
<div class="operate-area"> <div class="operate-area">
<input <div class="play-area">
id="screenshot-input" <input
type="file" id="screenshot-input"
style="display:none;" type="file"
@change="changeFile" style="display:none;"
> @change="changeFile"
<label id="select-btn">选择文件</label> >
<label id="select-btn">
<span>选择文件</span>
</label>
</div>
<div class="time-area">
<div id="ss-time-line">
<div class="track"></div>
</div>
</div>
<div class="clip-area"></div>
</div> </div>
</div> </div>
</template> </template>
...@@ -26,7 +36,10 @@ export default { ...@@ -26,7 +36,10 @@ export default {
name: 'Screenshot', name: 'Screenshot',
data() { data() {
return { return {
srcUrl: null srcUrl: null,
videoEle: null,
current: 0,
duration: 10
} }
}, },
created() {}, created() {},
...@@ -37,6 +50,7 @@ export default { ...@@ -37,6 +50,7 @@ export default {
input.click() input.click()
}) })
let video = document.getElementById('screenshot-video') let video = document.getElementById('screenshot-video')
this.videoEle = video
video.onerror = function(e) { video.onerror = function(e) {
console.log('onerror', e) console.log('onerror', e)
} }
...@@ -51,24 +65,11 @@ export default { ...@@ -51,24 +65,11 @@ export default {
//loadedmetadata //loadedmetadata
}, },
methods: { methods: {
selectClick() {},
changeFile(e) { changeFile(e) {
//console.log('changeFile', e) //console.log('changeFile', e)
if (e.target.files[0]) { if (e.target.files[0]) {
this.srcUrl = URL.createObjectURL(e.target.files[0]) this.srcUrl = URL.createObjectURL(e.target.files[0])
// let _this = this
// let reader = new FileReader()
// reader.addEventListener(
// 'load',
// () => {
// console.log('_this.srcUrl', this)
// _this.srcUrl = reader.result
// },
// false
// )
// reader.readAsDataURL(e.target.files[0])
} }
//e.target
} }
} }
} }
...@@ -76,21 +77,27 @@ export default { ...@@ -76,21 +77,27 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.screenshot { .screenshot {
width: 100%; position: relative;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
.content {
height: 100%; height: 100%;
margin: 30px; margin: 20px 30px;
background-color: lightcyan;
}
.operate-area {
background-color: aqua;
height: 200px;
display: flex; display: flex;
flex-direction: column; flex-shrink: 0;
.content { #select-btn {
height: 90%; background-color: bisque;
margin: 20px 30px; width: 100px;
background-color: lightcyan; height: 30px;
} line-height: 30px;
.operate-area {
#select-btn {
width: 200px;
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