|
@@ -57,7 +57,10 @@
|
|
|
>
|
|
|
<img
|
|
|
v-for="index of 126"
|
|
|
- v-show="curFrameIdxBlue === index - 1"
|
|
|
+ v-show="curFrameIdxBlue === index - 1 ||
|
|
|
+ curFrameIdxBlue - 1 === index - 1 ||
|
|
|
+ (curFrameIdxBlue === 0 && index === 126)
|
|
|
+ "
|
|
|
:key="index"
|
|
|
class="tree"
|
|
|
:src="`${$publicPath}tree-selection-frames/blue/blue_${(index-1).toString().padStart(4, '0')}.jpg`"
|
|
@@ -84,7 +87,10 @@
|
|
|
>
|
|
|
<img
|
|
|
v-for="index of 131"
|
|
|
- v-show="curFrameIdxRed === index - 1"
|
|
|
+ v-show="curFrameIdxRed === index - 1 ||
|
|
|
+ curFrameIdxRed - 1 === index - 1 ||
|
|
|
+ (curFrameIdxRed === 0 && index === 131)
|
|
|
+ "
|
|
|
:key="index"
|
|
|
class="tree"
|
|
|
:src="`${$publicPath}tree-selection-frames/red/red_${(index-1).toString().padStart(4, '0')}.jpg`"
|
|
@@ -108,7 +114,10 @@
|
|
|
>
|
|
|
<img
|
|
|
v-for="index of 125"
|
|
|
- v-show="curFrameIdxGreen === index - 1"
|
|
|
+ v-show="curFrameIdxGreen === index - 1 ||
|
|
|
+ curFrameIdxGreen - 1 === index - 1 ||
|
|
|
+ (curFrameIdxGreen === 0 && index === 125)
|
|
|
+ "
|
|
|
:key="index"
|
|
|
class="tree"
|
|
|
:src="`${$publicPath}tree-selection-frames/green/green_${(index + 3).toString().padStart(4, '0')}.jpg`"
|