| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <template>
- <div class="RenCulture">
- <div class="txt">
- <img src="../assets/images/AllWall/hswh.png" alt="" />
- <img src="../assets/images/AllWall/hswhbac.png" alt="" />
- </div>
- <div class="conten">
- <div class="left">
- <a
- href="https://culture.4dage.com/twoBase/LiangJiaHe/index.html"
- class="one"
- >
- <img src="../assets/images/AllWall/hswh1.png" alt="" />
- </a>
- <a
- style="width:94%; margin-bottom: 0px;"
- href="http://www.4dmodel.com/SuperTwo/index.html?m=794_f"
- class="tow"
- >
- <img src="../assets/images/AllWall/hswh2.png" alt="" />
- </a>
- <a
- href="https://admin.4dmuseum.cn/showPC.html?m=118&bigScene=&novr="
- class="one"
- >
- <img src="../assets/images/AllWall/hswh6.png" alt="" />
- </a>
- </div>
- <div class="right">
- <a
- href="http://www.4dmodel.com/SuperTwoCustom/shaoshan/index.html#/"
- class="tow"
- >
- <img src="../assets/images/AllWall/hswh3.png" alt="" />
- </a>
- <a
- href="http://www.4dmodel.com/SuperTwo/index.html?m=770_f"
- class="tow"
- >
- <img src="../assets/images/AllWall/hswh4.png" alt="" />
- </a>
- <a
- href="http://www.4dmodel.com/SuperTwo/index.html?m=775_f"
- class="tow"
- >
- <img src="../assets/images/AllWall/hswh5.png" alt="" />
- </a>
- <a
- href="http://www.4dmodel.com/SuperTwoCustom/SuperTwo710_711/index/home.html"
- class="tow"
- >
- <img src="../assets/images/AllWall/hswh8.png" alt="" />
- </a>
- </div>
- </div>
- <div class="conten" style="margin: 0px auto 0">
- <div class="right"></div>
- <div class="left"></div>
- </div>
- </div>
- </template>
- <script>
- //这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
- //例如:import 《组件名称》 from '《组件路径》';
- export default {
- //import引入的组件需要注入到对象中才能使用
- components: {},
- data() {
- //这里存放数据
- return {};
- },
- //监听属性 类似于data概念
- computed: {},
- //监控data中的数据变化
- watch: {},
- //方法集合
- methods: {},
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {},
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {},
- beforeCreate() {}, //生命周期 - 创建之前
- beforeMount() {}, //生命周期 - 挂载之前
- beforeUpdate() {}, //生命周期 - 更新之前
- updated() {}, //生命周期 - 更新之后
- beforeUnmount() {}, //生命周期 - 销毁之前
- unmounted() {}, //生命周期 - 销毁完成
- activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
- };
- </script>
- <style scoped>
- .RenCulture {
- width: 100%;
- }
- .txt {
- margin-top: 60px;
- }
- .txt img {
- max-width: 98%;
- }
- .conten {
- width: 90%;
- margin: 28px auto 0;
- display: flex;
- justify-content: space-around;
- }
- .conten a {
- overflow: hidden;
- display: inline-block;
- }
- .conten img {
- object-fit: cover;
- width: 100%;
- }
- .left {
- height: 100%;
- width: 50%;
- }
- .right {
- height: 100%;
- width: 48%;
- }
- .one {
- width: 100%;
- }
- .tow {
- margin-bottom: 4px;
- width: 100%;
- }
- </style>
|