Browse Source

Merge remote-tracking branch 'origin/wanzi'

liyanbo 2 tuần trước cách đây
mục cha
commit
1d47d276b5

+ 1 - 0
src/components/videopage/VideoPlayer.vue

@@ -15,6 +15,7 @@
               @pause="handleVideoPause"
               @play="handleVideoPlay"
               @click="handleVideoClick"
+              controlslist="nodownload"
           ></video>
           <!-- 历史播放位置提示 -->
           <div

+ 12 - 1
src/views/AIPage/aiGenerate/DialogContent.vue

@@ -1718,11 +1718,22 @@ onUnmounted(() => {
   justify-content: center;
   align-items: center;
   z-index: 5;
+  animation: scrollBackgroundFadeIn 0.8s ease-out;
+}
+
+.poem-display::before {
+  content: '';
+  position: absolute;
+  top: 0;
+  left: 0;
+  width: 100%;
+  height: 100%;
   background-image: url('@/assets/dialogue/long-scroll.png');
   background-size: 100%;
   background-repeat: no-repeat;
   background-position: center;
-  animation: scrollBackgroundFadeIn 0.8s ease-out;
+  opacity: 0.5;
+  z-index: -1;
 }
 
 .poem-content {