Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mould-vuecli3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lhfe
mould-vuecli3
Commits
94238c80
Commit
94238c80
authored
Aug 28, 2020
by
Jeff
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop' into develop
parents
588da09d
74fbaf1b
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
261 additions
and
62 deletions
+261
-62
index.vue
src/components/header/index.vue
+6
-6
modalLayer.vue
src/components/modal/modalLayer.vue
+5
-5
index.vue
src/components/rightPanel/index.vue
+3
-3
index.vue
src/components/sideNav/index.vue
+14
-14
videoTimeline.vue
src/components/videoCutter/videoTimeline.vue
+157
-0
screenshot.vue
src/views/screenshot.vue
+37
-28
videoCutter.vue
src/views/videoCutter.vue
+39
-6
No files found.
src/components/header/index.vue
View file @
94238c80
...
...
@@ -35,11 +35,11 @@ export default {
<
style
scoped
lang=
"scss"
>
/* @import url(); 引入css类 */
.comp-commonheader
{
width
:
100%
;
height
:
100px
;
border
:
1px
solid
pink
;
display
:
flex
;
align-items
:
center
;
justify-content
:
flex-start
;
width
:
100%
;
height
:
100px
;
border
:
1px
solid
pink
;
display
:
flex
;
align-items
:
center
;
justify-content
:
flex-start
;
}
</
style
>
src/components/modal/modalLayer.vue
View file @
94238c80
...
...
@@ -22,10 +22,10 @@ export default {
<
style
lang=
"scss"
scoped
>
.modal-layer
{
position
:
absolute
;
left
:
0
;
top
:
0
;
width
:
0
;
height
:
0
;
position
:
absolute
;
left
:
0
;
top
:
0
;
width
:
0
;
height
:
0
;
}
</
style
>
src/components/rightPanel/index.vue
View file @
94238c80
...
...
@@ -17,8 +17,8 @@ export default {
<
style
scoped
lang=
"scss"
>
/* @import url(); 引入css类 */
.comp-rightpanel
{
width
:
150px
;
height
:
100%
;
border
:
1px
solid
skyblue
;
width
:
150px
;
height
:
100%
;
border
:
1px
solid
skyblue
;
}
</
style
>
src/components/sideNav/index.vue
View file @
94238c80
...
...
@@ -31,22 +31,22 @@ export default {
<
style
scoped
lang=
"scss"
>
/* @import url(); 引入css类 */
.comp-sidenav
{
padding
:
30px
;
// width: 100px;
border
:
1px
solid
skyblue
;
height
:
100%
;
// display: flex;
padding
:
30px
;
// width: 100px;
border
:
1px
solid
skyblue
;
height
:
100%
;
// display: flex;
a
{
font-weight
:
bold
;
color
:
#2c3e50
;
display
:
inline-block
;
width
:
100%
;
padding
:
10px
0
;
a
{
font-weight
:
bold
;
color
:
#2c3e50
;
display
:
inline-block
;
width
:
100%
;
padding
:
10px
0
;
&
.router-link-exact-active
{
color
:
#42b983
;
}
&
.router-link-exact-active
{
color
:
#42b983
;
}
}
}
</
style
>
src/components/videoCutter/videoTimeline.vue
0 → 100644
View file @
94238c80
<
template
>
<div
class=
"video-timeline"
>
<div
ref=
"sliderWidth"
v-drag
class=
"time-slider"
>
<div
class=
"time-slider-rail"
></div>
<div
class=
"time-slider-track"
:style=
"
{ width: ((info.val - info.min) / info.max) * 100 + '%' }"
>
</div>
<div
data-action=
"handle"
class=
"time-slider-handle"
:style=
"
{ left: ((info.val - info.min) / info.max) * 100 + '%' }"
>
</div>
</div>
</div>
</
template
>
<
script
>
export
default
{
name
:
'VideoTimeline'
,
directives
:
{
drag
(
el
,
binding
,
vnode
)
{
let
_this
=
vnode
.
context
,
mousemove
=
null
,
mouseup
=
null
,
dataAction
=
''
mousemove
=
(
e
)
=>
{
_this
.
dragMove
&&
_this
.
dragMove
(
e
.
pageX
,
dataAction
,
e
)
}
mouseup
=
(
e
)
=>
{
document
.
removeEventListener
(
'mousemove'
,
mousemove
)
document
.
removeEventListener
(
'mouseup'
,
mouseup
)
_this
.
dragUp
&&
_this
.
dragUp
(
e
.
pageX
,
dataAction
,
e
)
}
el
.
onmousedown
=
(
e
)
=>
{
dataAction
=
e
.
target
.
dataset
.
action
if
(
e
.
which
===
3
||
e
.
which
===
2
)
{
e
.
stopPropagation
()
return
}
document
.
addEventListener
(
'mousemove'
,
mousemove
)
document
.
addEventListener
(
'mouseup'
,
mouseup
)
_this
.
dragDown
&&
_this
.
dragDown
(
e
.
pageX
,
dataAction
,
e
)
}
}
},
props
:
{
info
:
{
type
:
Object
,
required
:
true
,
default
:
function
()
{
return
{
step
:
0.1
,
min
:
0
,
max
:
10
,
val
:
0
,
cut
:
[
0
,
10
]
}
}
}
},
data
()
{
return
{
width
:
100
}
},
methods
:
{
dragDown
(
dis
,
action
)
{
if
(
!
action
)
return
this
.
width
=
this
.
$refs
.
sliderWidth
.
clientWidth
this
.
action
=
action
this
.
dragHand
=
true
this
.
mpos
=
{
x
:
dis
,
v
:
this
.
info
.
val
}
this
.
$emit
(
'changeData'
,
{
val
:
this
.
mpos
.
v
,
action
:
action
,
type
:
'start'
})
},
dragMove
(
pos
)
{
if
(
!
this
.
action
)
return
let
val
=
0
console
.
log
(
pos
,
'<_-------------'
)
// let pre = Math.round(((pos.x - this.mpos.x) / 120 * this.item.len + this.mpos.v) / this.item.step) / (1 / this.item.step);
// this.item.val = pre > this.item.max ? this.item.max : pre
<
this
.
item
.
min
?
this
.
item
.
min
:
pre
;
this
.
$emit
(
'changeData'
,
{
val
:
val
,
action
:
this
.
action
,
type
:
'change'
})
},
dragUp
()
{
if
(
!
this
.
action
)
return
let
val
=
0
this
.
mpos
=
null
this
.
dragHand
=
false
this
.
action
=
''
this
.
$emit
(
'changeData'
,
{
val
:
val
,
action
:
this
.
action
,
type
:
'end'
})
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.video-timeline
{
width
:
100%
;
height
:
50px
;
background-color
:
beige
;
}
.time-slider
{
position
:
relative
;
height
:
15px
;
padding
:
5px
0
;
width
:
100%
;
margin-right
:
1px
;
-ms-touch-action
:
none
;
touch-action
:
none
;
-webkit-box-sizing
:
border-box
;
box-sizing
:
border-box
;
-webkit-tap-highlight-color
:
rgba
(
0
,
0
,
0
,
0
);
*
{
-webkit-box-sizing
:
border-box
;
box-sizing
:
border-box
;
-webkit-tap-highlight-color
:
rgba
(
0
,
0
,
0
,
0
);
}
.time-slider-rail
{
position
:
absolute
;
width
:
100%
;
background-color
:
#d9ddea
;
height
:
4px
;
border-radius
:
3px
;
}
.time-slider-track
{
position
:
absolute
;
background-color
:
#737596
;
border-radius
:
3px
;
height
:
4px
;
left
:
0%
;
width
:
69
.1515%
;
}
.time-slider-handle
{
position
:
absolute
;
margin-left
:
-6px
;
margin-top
:
-4px
;
left
:
69
.1515%
;
width
:
12px
;
height
:
12px
;
background-color
:
#737596
;
cursor
:
-
webkit-grab
;
cursor
:
grab
;
border-radius
:
50%
;
-ms-touch-action
:
pan-x
;
touch-action
:
pan-x
;
}
}
</
style
>
src/views/screenshot.vue
View file @
94238c80
...
...
@@ -10,13 +10,23 @@
></video>
</div>
<div
class=
"operate-area"
>
<input
id=
"screenshot-input"
type=
"file"
style=
"display:none;"
@
change=
"changeFile"
>
<label
id=
"select-btn"
>
选择文件
</label>
<div
class=
"play-area"
>
<input
id=
"screenshot-input"
type=
"file"
style=
"display:none;"
@
change=
"changeFile"
>
<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>
</
template
>
...
...
@@ -26,21 +36,26 @@ export default {
name
:
'Screenshot'
,
data
()
{
return
{
srcUrl
:
null
srcUrl
:
null
,
videoEle
:
null
,
current
:
0
,
duration
:
10
}
},
created
()
{},
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
)
{
this
.
videoEle
=
video
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
)
{
...
...
@@ -51,24 +66,11 @@ export default {
//loadedmetadata
},
methods
:
{
selectClick
()
{},
changeFile
(
e
)
{
//console.log('changeFile', e)
if
(
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,20 +78,27 @@ export default {
<
style
lang=
"scss"
scoped
>
.screenshot
{
position
:
relative
;
width
:
100%
;
height
:
100%
;
margin
:
30px
;
display
:
flex
;
flex-direction
:
column
;
.content
{
height
:
90%
;
height
:
100%
;
margin
:
20px
30px
;
background-color
:
lightcyan
;
}
.operate-area
{
background-color
:
aqua
;
height
:
200px
;
display
:
flex
;
flex-shrink
:
0
;
#select-btn
{
width
:
200px
;
height
:
100px
;
background-color
:
bisque
;
width
:
100px
;
height
:
30px
;
line-height
:
30px
;
}
}
}
...
...
src/views/videoCutter.vue
View file @
94238c80
<
template
>
<div
class=
"video-cutter"
>
<div
class=
"video-content"
>
<
V
ideoPlayer
<
v
ideoPlayer
@
currentTime=
"changeTime"
@
end=
"playEnd"
@
timeupdate=
"timeupdate"
></
V
ideoPlayer>
></
v
ideoPlayer>
</div>
<div
class=
"video-btn"
>
<videoChange
@
changeVideo=
"changeVideo"
></videoChange>
...
...
@@ -14,9 +14,18 @@
:now-time=
"nowTime"
@
play=
"videoPlay"
></videoControl>
<div></div>
<div
class=
"video-water"
>
<input
id=
"cutterRemoveWater"
v-model=
"noWater"
type=
"checkbox"
>
<label
for=
"cutterRemoveWater"
>
去除水印
</label>
</div>
</div>
<div
class=
"timeline-content"
>
<videoTimeline
:info=
"timelineObj"
></videoTimeline>
</div>
<div></div>
<div></div>
</div>
</
template
>
...
...
@@ -27,7 +36,8 @@ export default {
components
:
{
VideoPlayer
:
()
=>
import
(
'@/components/videoCutter/videoPlayer.vue'
),
VideoChange
:
()
=>
import
(
'@/components/videoCutter/videoChange.vue'
),
VideoControl
:
()
=>
import
(
'@/components/videoCutter/videoControl.vue'
)
VideoControl
:
()
=>
import
(
'@/components/videoCutter/videoControl.vue'
),
VideoTimeline
:
()
=>
import
(
'@/components/videoCutter/videoTimeline.vue'
)
},
data
()
{
return
{
...
...
@@ -35,7 +45,9 @@ export default {
nowTime
:
0
,
duration
:
0
,
playing
:
false
,
canPlay
:
false
canPlay
:
false
,
noWater
:
true
,
timelineObj
:
{
step
:
0.1
,
min
:
0
,
max
:
10
,
val
:
0
}
}
},
created
()
{},
...
...
@@ -48,6 +60,7 @@ export default {
},
canPlayFunc
(
data
)
{
this
.
duration
=
data
this
.
timelineObj
.
max
=
this
.
duration
this
.
canPlay
=
true
},
videoPlay
()
{
...
...
@@ -59,6 +72,7 @@ export default {
ob
.
play
=
true
if
(
this
.
nowTime
>=
this
.
duration
)
{
ob
.
time
=
0
this
.
timelineObj
.
val
=
0
}
}
this
.
playing
=
!
this
.
playing
...
...
@@ -70,9 +84,11 @@ export default {
playEnd
()
{
this
.
playing
=
false
this
.
nowTime
=
this
.
duration
this
.
timelineObj
.
val
=
this
.
nowTime
},
timeupdate
(
time
)
{
this
.
nowTime
=
time
this
.
timelineObj
.
val
=
this
.
nowTime
}
}
}
...
...
@@ -92,4 +108,21 @@ export default {
display
:
flex
;
justify-content
:
space-between
;
}
.video-water
{
display
:
flex
;
align-items
:
center
;
input
{
margin-right
:
4px
;
}
*
{
cursor
:
pointer
;
}
}
.timeline-content
{
width
:
100%
;
margin
:
10px
0
;
padding
:
0
20px
;
}
</
style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment