|
@@ -86,7 +86,7 @@
|
|
|
:animationIndex="0" :turnSlideToId="() => { }" :manualExitFullscreen="() => { }" />
|
|
|
</div>
|
|
|
<!-- 全屏时的左右下角工具按钮 -->
|
|
|
- <div v-if="isFullscreen" class="tools-left">
|
|
|
+ <div v-if="isFullscreen && (!isFollowModeActive || props.type == '1')" class="tools-left">
|
|
|
<IconLeftTwo class="tool-btn" theme="two-tone" :fill="['#111', '#fff']" @click="previousSlide" />
|
|
|
<IconRightTwo class="tool-btn" theme="two-tone" :fill="['#111', '#fff']" @click="nextSlide" />
|
|
|
</div>
|
|
@@ -119,7 +119,7 @@
|
|
|
|
|
|
<CountdownTimer v-if="timerlVisible" @close="timerlVisible = false" />
|
|
|
|
|
|
- <div v-if="isFullscreen" class="tools-right" :class="{ 'visible': rightToolsVisible }"
|
|
|
+ <div v-if="isFullscreen && (!isFollowModeActive || props.type == '1')" class="tools-right" :class="{ 'visible': rightToolsVisible }"
|
|
|
@mouseleave="rightToolsVisible = false" @mouseenter="rightToolsVisible = true">
|
|
|
<div class="content">
|
|
|
<div class="tool-btn page-number" @click="slideThumbnailModelVisible = true">幻灯片 {{ slideIndex +
|