Showing
1 changed file
with
4 additions
and
4 deletions
| @@ -257,9 +257,9 @@ export struct WdWebLocalComponent { | @@ -257,9 +257,9 @@ export struct WdWebLocalComponent { | ||
| 257 | 257 | ||
| 258 | startProgressTimer() { | 258 | startProgressTimer() { |
| 259 | this.progressTimerNumber = setTimeout(() => { | 259 | this.progressTimerNumber = setTimeout(() => { |
| 260 | - animateTo({duration: 1000}, () => { | 260 | + // animateTo({duration: 1000}, () => { |
| 261 | this.progressOpacity = 0 | 261 | this.progressOpacity = 0 |
| 262 | - }) | 262 | + // }) |
| 263 | }, 3000) | 263 | }, 3000) |
| 264 | } | 264 | } |
| 265 | cancelProgressTimer() { | 265 | cancelProgressTimer() { |
| @@ -313,13 +313,13 @@ export struct WdWebLocalComponent { | @@ -313,13 +313,13 @@ export struct WdWebLocalComponent { | ||
| 313 | } | 313 | } |
| 314 | }) | 314 | }) |
| 315 | .onClick(() => { | 315 | .onClick(() => { |
| 316 | - animateTo({duration: 1000}, () => { | 316 | + // animateTo({duration: 1000}, () => { |
| 317 | if (this.progressOpacity <= 0) { | 317 | if (this.progressOpacity <= 0) { |
| 318 | this.progressOpacity = 1 | 318 | this.progressOpacity = 1 |
| 319 | } else { | 319 | } else { |
| 320 | this.progressOpacity = 0 | 320 | this.progressOpacity = 0 |
| 321 | } | 321 | } |
| 322 | - }) | 322 | + // }) |
| 323 | }) | 323 | }) |
| 324 | 324 | ||
| 325 | if (this.isEndPlay){ | 325 | if (this.isEndPlay){ |
-
Please register or login to post a comment