Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
chenjun
2024-08-15 14:18:33 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8f6926a8bd1b399e559ac9809071f717df19d301
8f6926a8
1 parent
499e3356
19184 UI还原问题-【uat】进入视频页,拖动进度条,显示进度时间颜色样式和ios 不一致
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerFullScreenView.ets
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerProgressView.ets
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerFullScreenView.ets
View file @
8f6926a
...
...
@@ -130,11 +130,15 @@ export struct PlayerFullScreenView {
Column() {
Text() {
Span(this.upProVal)
.fontColor(Color.White)
Span(' / ')
.fontColor(Color.White)
Span(this.duration)
.fontColor('#888888')
}
.fontSize(24)
.fontColor(Color.White)
.fontWeight(600)
.margin({ bottom: 30 })
.visibility(this.isDragging ? Visibility.Visible : Visibility.None)
...
...
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerProgressView.ets
View file @
8f6926a
...
...
@@ -77,11 +77,14 @@ export struct PlayerProgressView {
Column() {
Text() {
Span(DateTimeUtils.secondToTime(Math.floor(this.progressVal / 100 * this.videoDuration)))
.fontColor(Color.White)
Span(' / ')
.fontColor(Color.White)
Span(DateTimeUtils.secondToTime(this.videoDuration))
.fontColor('#888888')
}
.fontSize(24)
.fontColor(Color.White)
.fontWeight(600)
.margin({ bottom: 30 })
.visibility(this.isDragging ? Visibility.Visible : Visibility.None)
...
...
Please
register
or
login
to post a comment