|
|
@@ -25,12 +25,23 @@
|
|
|
>四维看看</a
|
|
|
>
|
|
|
<a href="https://www.cgaii.com/#/" class="txt">中德人工智能研究院</a>
|
|
|
- <div style="margin-top: 60px" class="xian"></div>
|
|
|
+ <div style="margin-top: 60px" class="xian"></div>
|
|
|
</div>
|
|
|
|
|
|
<div class="logo">
|
|
|
- <img src="../assets/images/about1.png" alt="" />
|
|
|
- <img src="../assets/images/about.png" alt="" />
|
|
|
+ <img
|
|
|
+ src="../assets/images/about1.png"
|
|
|
+ alt=""
|
|
|
+ style="margin-right: 10px"
|
|
|
+ />
|
|
|
+ <img src="../assets/images/about.png" alt="" @click="isShow = true" />
|
|
|
+ </div>
|
|
|
+ <div class="show" v-show="isShow">
|
|
|
+ <img src="../assets/images/erweima1.jpg" alt="">
|
|
|
+ <img style="height:315px; margin-top: 20px;" src="../assets/images/erweima2.png" alt="">
|
|
|
+ <div class="close" @click="isShow = false">
|
|
|
+ <img src="../assets/images/close.png" alt="">
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -44,7 +55,10 @@ export default {
|
|
|
components: {},
|
|
|
data() {
|
|
|
//这里存放数据
|
|
|
- return {};
|
|
|
+ return {
|
|
|
+ //控制大二维码的显示和隐藏
|
|
|
+ isShow: false,
|
|
|
+ };
|
|
|
},
|
|
|
//监听属性 类似于data概念
|
|
|
computed: {},
|
|
|
@@ -66,6 +80,33 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style scoped>
|
|
|
+.close {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 12px;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ width: 80px;
|
|
|
+ height: 80px;
|
|
|
+}
|
|
|
+.close img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.show {
|
|
|
+ position: absolute;
|
|
|
+ background-color: rgba(0, 0, 0, 0.8);
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100vh;
|
|
|
+ z-index: 9999;
|
|
|
+}
|
|
|
+.show>img {
|
|
|
+ margin-top: 60px;
|
|
|
+ width: 251px;
|
|
|
+ height: 250px;
|
|
|
+
|
|
|
+}
|
|
|
.xian {
|
|
|
width: 100%;
|
|
|
height: 2px;
|
|
|
@@ -80,7 +121,7 @@ export default {
|
|
|
}
|
|
|
.About {
|
|
|
position: relative;
|
|
|
- width: 100vw;
|
|
|
+ width: 100%;
|
|
|
background-color: rgba(0, 0, 0, 0.9);
|
|
|
padding-top: 30px;
|
|
|
}
|