Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dfzx_mb_01
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
template admin
dfzx_mb_01
Commits
8e7f5d4b
Commit
8e7f5d4b
authored
Oct 28, 2020
by
liujiangnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 时间问题
parent
3ccd78b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
play.component.ts
src/app/play/play.component.ts
+11
-4
No files found.
src/app/play/play.component.ts
View file @
8e7f5d4b
...
...
@@ -379,13 +379,14 @@ export class PlayComponent implements OnInit, OnDestroy {
return
new
Promise
((
resolve
,
reject
)
=>
{
video
.
addEventListener
(
'
canplay
'
,
()
=>
{
console
.
log
(
'
video canplay
'
);
resolve
();
})
video
.
addEventListener
(
'
error
'
,
(
e
)
=>
{
console
.
log
(
'
video error:
'
,
e
);
reject
();
})
video
.
load
();
resolve
();
});
}
...
...
@@ -506,8 +507,8 @@ export class PlayComponent implements OnInit, OnDestroy {
}
],
answerType
:
"
text
"
,
questionType
:
"
text
"
,
text
:
"
This is a test question.
"
questionType
:
"
audio
"
,
audio_url
:
"
assets/play/default/audio.mp3
"
}
}
}
...
...
@@ -674,7 +675,10 @@ export class PlayComponent implements OnInit, OnDestroy {
return
button
;
}
private
createProgressBar
(
barTopKey
,
barBottomKey
,
barBtnKey
)
{
totalTime
=
null
;
private
createProgressBar
(
barTopKey
,
barBottomKey
,
barBtnKey
)
{
const
container
=
new
MySprite
();
const
progressBarBg
=
createSprite
(
barBottomKey
);
progressBarBg
.
anchorX
=
0
;
...
...
@@ -703,6 +707,7 @@ export class PlayComponent implements OnInit, OnDestroy {
totalTime
.
x
=
progressBarBg
.
width
-
totalTime
.
width
;
totalTime
.
y
=
currentTime
.
y
;
this
.
totalTime
=
totalTime
;
container
.
addChild
(
progressBarBg
);
container
.
addChild
(
progressBarPlayed
);
container
.
addChild
(
btn
);
...
...
@@ -729,6 +734,8 @@ export class PlayComponent implements OnInit, OnDestroy {
this
.
currentTime
=
Math
.
floor
(
progress
*
this
.
curAudio
.
duration
);
target
.
timeLabel
.
text
=
formatTime
(
'
mm:ss
'
,
new
Date
(
this
.
currentTime
*
1000
));
this
.
totalTime
.
text
=
formatTime
(
'
mm:ss
'
,
new
Date
(
this
.
curAudio
.
duration
*
1000
));
}
private
touchDownProgressBar
(
target
)
{
...
...
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