lanxin пре 2 месеци
родитељ
комит
c9a114de56

+ 1 - 0
hot/src/views/Home2Mobile.vue

@@ -538,6 +538,7 @@ export default {
       .gameImg {
         width: 100%;
         height: fit-content;
+        max-height: 200px;
         box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
         object-fit: contain;
       }

BIN
scene/public/images/VR.png


+ 17 - 4
scene/src/pages/A2main/components/A21vrOff/index.module.scss

@@ -1,4 +1,17 @@
-// .A21vrOff {
-//   :global {
-//   }
-// }
+.A21vrOff {
+  cursor: pointer;
+  z-index: 100;
+  width: 50px;
+  height: 50px;
+  :global {
+
+    #vrOffImg {
+      width: 40px;
+      height: 40px;
+      top: 16px;
+      left: 16px;
+      cursor: pointer;
+      object-fit: contain;
+    }
+  }
+}

+ 2 - 2
scene/src/pages/A2main/components/A21vrOff/index.tsx

@@ -3,8 +3,8 @@ import styles from './index.module.scss'
 
 function A21vrOff() {
   return (
-    <div id='vrOff' className={styles.A21vrOff}>
-      <img id='vrOffImg' src='images/vrOffImg.png' alt='' />
+    <div id='vrOff' className={styles.A21vrOff} title='退出VR'>
+      <img id='vrOffImg' src='images/close1.png' alt='退出VR' />
     </div>
   )
 }