|
@@ -48,7 +48,7 @@
|
|
|
:style="{
|
|
|
width: `${timeAxisScaleWidth}px`,
|
|
|
marginRight: `${timeAxisScaleMargin}px`,
|
|
|
- opacity: computeTimeAxisScaleOpacity(index),
|
|
|
+ // opacity: computeTimeAxisScaleOpacity(index),
|
|
|
}"
|
|
|
/>
|
|
|
<div
|
|
@@ -58,7 +58,7 @@
|
|
|
:style="{
|
|
|
width: `${timeAxisScaleWidth}px`,
|
|
|
marginRight: `${timeAxisScaleMargin}px`,
|
|
|
- opacity: computeTimeAxisScaleOpacity(index + timeAxisScaleRepeat),
|
|
|
+ // opacity: computeTimeAxisScaleOpacity(index + timeAxisScaleRepeat),
|
|
|
}"
|
|
|
/>
|
|
|
</div>
|
|
@@ -288,6 +288,11 @@ export default {
|
|
|
*/
|
|
|
let isAutoMoving = ref(false)
|
|
|
let beginAutoMoveIntervalId = null
|
|
|
+ beginAutoMoveIntervalId = setInterval(() => {
|
|
|
+ if (moveSpeed.value === 0) {
|
|
|
+ isAutoMoving.value = true
|
|
|
+ }
|
|
|
+ }, 2000)
|
|
|
watch(isAutoMoving, (vNew) => {
|
|
|
if (vNew) {
|
|
|
moveSpeed.value = 0.03
|