diff --git a/src/pages/ChatMain/ChatMainList/index.vue b/src/pages/ChatMain/ChatMainList/index.vue index 1850de0..24d4aab 100644 --- a/src/pages/ChatMain/ChatMainList/index.vue +++ b/src/pages/ChatMain/ChatMainList/index.vue @@ -112,11 +112,18 @@ + + + + + + + diff --git a/src/pages/ChatModule/AigcPhotoCard/mocks.js b/src/pages/ChatModule/AigcPhotoCard/mocks.js index 1afb128..e407f79 100644 --- a/src/pages/ChatModule/AigcPhotoCard/mocks.js +++ b/src/pages/ChatModule/AigcPhotoCard/mocks.js @@ -2,6 +2,7 @@ export default { id: "xiaoqikong-flying", title: "沉浸式飞越 · 小七孔", cover: "https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1000&q=80", + videoUrl: "https://oss.nianxx.cn/config/03e179416ff9c4990eba9e70a4448a6f.mp4", action: { type: "play", }, diff --git a/src/pages/ChatModule/AigcPhotoCard/styles/index.scss b/src/pages/ChatModule/AigcPhotoCard/styles/index.scss index eaefd81..f266c3c 100644 --- a/src/pages/ChatModule/AigcPhotoCard/styles/index.scss +++ b/src/pages/ChatModule/AigcPhotoCard/styles/index.scss @@ -1,5 +1,5 @@ .aigc-photo-card { - height: 272px; + height: 220px; background: #0f172a; } @@ -11,44 +11,43 @@ opacity: 0.55; } -.aigc-photo-card__image { +.aigc-photo-card__video { height: 100%; } -.aigc-photo-card__shade { - position: absolute; - inset: 0; - background: rgba(15, 23, 42, 0.38); +.aigc-photo-card.is-disabled .aigc-photo-card__video { + pointer-events: none; } -.aigc-photo-card__play { +.aigc-photo-card__fullscreen { position: absolute; - left: 50%; - top: 50%; - width: 76px; - height: 76px; - border: 1px solid rgba(255, 255, 255, 0.48); - background: rgba(255, 255, 255, 0.28); - transform: translate(-50%, -50%); + top: 10px; + right: 10px; + min-width: 44px; + height: 28px; + padding: 0 10px; + border-radius: 14px; + background: rgba(15, 23, 42, 0.72); box-sizing: border-box; } -.aigc-photo-card__triangle { - width: 0; - height: 0; - margin-left: 6px; - border-top: 17px solid transparent; - border-bottom: 17px solid transparent; - border-left: 23px solid #fff; +.aigc-photo-card__fullscreen:active { + opacity: 0.82; +} + +.aigc-photo-card__empty { + height: 100%; } .aigc-photo-card__title { position: absolute; left: 0; right: 0; - bottom: 72px; + top: 16px; + padding: 0 16px; text-align: center; line-height: 22px; letter-spacing: 0; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32); + pointer-events: none; }