chao 1 year ago
parent
commit
01d09e15ad

+ 3 - 1
src/asstes/css/Example.css

@@ -46,6 +46,7 @@
             transform: translate(0,-50%);
             cursor: pointer;
             z-index: 1;
+            width: 64px;
         }
         .bi_arrow_right{
             position: absolute;
@@ -54,6 +55,7 @@
             transform: translate(0,-50%);
             cursor: pointer;
             z-index: 1;
+            width: 64px;
         }
         .contentStyle{
             text-align: center;
@@ -72,7 +74,7 @@
             }
             img{
                 display: inline-block;
-                /* width: 100%; */
+                max-width: 25%;
             }
         }
     }

+ 2 - 0
src/asstes/css/Introduction.css

@@ -162,6 +162,8 @@
 
                 img {
                     margin-bottom: 12px;
+                    max-width: 100%;
+                    padding: 10px;
                 }
             }
         }

+ 1 - 0
src/asstes/css/ProcessFlow.css

@@ -50,6 +50,7 @@
                     position: relative;
                     margin: 60px 10px;
                     text-align: center;
+                    cursor: pointer;
 
                     span:nth-child(1) {
                         font-size: 24px;

+ 3 - 3
src/complates/ProcessFlow.js

@@ -35,15 +35,15 @@ function ProcessFlow() {
                             <span>高性价比</span><br />
                             <span>Economical Choice</span>
                         </div> */}
-                        <div onClick={()=>ScrollVal(1)} className={scrollValue === 1 && "anchor_left_div"}>
+                        <div onClick={()=>ScrollVal(0)} className={scrollValue === 0 && "anchor_left_div"}>
                             <span>高集成度</span><br />
                             <span>Highly Integrated</span>
                         </div>
-                        <div onClick={()=>ScrollVal(2)} className={scrollValue === 2 && "anchor_left_div"}>
+                        <div onClick={()=>ScrollVal(1)} className={scrollValue === 1 && "anchor_left_div"}>
                             <span>易用性</span><br />
                             <span>Usability</span>
                         </div>
-                        <div onClick={()=>ScrollVal(3)} className={scrollValue === 3 && "anchor_left_div"}>
+                        <div onClick={()=>ScrollVal(2)} className={scrollValue === 2 && "anchor_left_div"}>
                             <span>开放性</span><br />
                             <span>Openness</span>
                         </div>