RenCulture.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <div class="RenCulture">
  3. <div class="txt">
  4. <img src="../assets/images/AllWall/hswh.png" alt="" />
  5. <img src="../assets/images/AllWall/hswhbac.png" alt="" />
  6. </div>
  7. <div class="conten">
  8. <div class="left">
  9. <a
  10. href="https://culture.4dage.com/twoBase/LiangJiaHe/index.html"
  11. class="one"
  12. >
  13. <img src="../assets/images/AllWall/hswh1.png" alt="" />
  14. </a>
  15. <a
  16. style="width:94%; margin-bottom: 0px;"
  17. href="http://www.4dmodel.com/SuperTwo/index.html?m=794_f"
  18. class="tow"
  19. >
  20. <img src="../assets/images/AllWall/hswh2.png" alt="" />
  21. </a>
  22. <a
  23. href="https://admin.4dmuseum.cn/showPC.html?m=118&amp;bigScene=&amp;novr="
  24. class="one"
  25. >
  26. <img src="../assets/images/AllWall/hswh6.png" alt="" />
  27. </a>
  28. </div>
  29. <div class="right">
  30. <a
  31. href="http://www.4dmodel.com/SuperTwoCustom/shaoshan/index.html#/"
  32. class="tow"
  33. >
  34. <img src="../assets/images/AllWall/hswh3.png" alt="" />
  35. </a>
  36. <a
  37. href="http://www.4dmodel.com/SuperTwo/index.html?m=770_f"
  38. class="tow"
  39. >
  40. <img src="../assets/images/AllWall/hswh4.png" alt="" />
  41. </a>
  42. <a
  43. href="http://www.4dmodel.com/SuperTwo/index.html?m=775_f"
  44. class="tow"
  45. >
  46. <img src="../assets/images/AllWall/hswh5.png" alt="" />
  47. </a>
  48. <a
  49. href="http://www.4dmodel.com/SuperTwoCustom/SuperTwo710_711/index/home.html"
  50. class="tow"
  51. >
  52. <img src="../assets/images/AllWall/hswh8.png" alt="" />
  53. </a>
  54. </div>
  55. </div>
  56. <div class="conten" style="margin: 0px auto 0">
  57. <div class="right"></div>
  58. <div class="left"></div>
  59. </div>
  60. </div>
  61. </template>
  62. <script>
  63. //这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
  64. //例如:import 《组件名称》 from '《组件路径》';
  65. export default {
  66. //import引入的组件需要注入到对象中才能使用
  67. components: {},
  68. data() {
  69. //这里存放数据
  70. return {};
  71. },
  72. //监听属性 类似于data概念
  73. computed: {},
  74. //监控data中的数据变化
  75. watch: {},
  76. //方法集合
  77. methods: {},
  78. //生命周期 - 创建完成(可以访问当前this实例)
  79. created() {},
  80. //生命周期 - 挂载完成(可以访问DOM元素)
  81. mounted() {},
  82. beforeCreate() {}, //生命周期 - 创建之前
  83. beforeMount() {}, //生命周期 - 挂载之前
  84. beforeUpdate() {}, //生命周期 - 更新之前
  85. updated() {}, //生命周期 - 更新之后
  86. beforeUnmount() {}, //生命周期 - 销毁之前
  87. unmounted() {}, //生命周期 - 销毁完成
  88. activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
  89. };
  90. </script>
  91. <style scoped>
  92. .RenCulture {
  93. width: 100%;
  94. }
  95. .txt {
  96. margin-top: 60px;
  97. }
  98. .txt img {
  99. max-width: 98%;
  100. }
  101. .conten {
  102. width: 90%;
  103. margin: 28px auto 0;
  104. display: flex;
  105. justify-content: space-around;
  106. }
  107. .conten a {
  108. overflow: hidden;
  109. display: inline-block;
  110. }
  111. .conten img {
  112. object-fit: cover;
  113. width: 100%;
  114. }
  115. .left {
  116. height: 100%;
  117. width: 50%;
  118. }
  119. .right {
  120. height: 100%;
  121. width: 48%;
  122. }
  123. .one {
  124. width: 100%;
  125. }
  126. .tow {
  127. margin-bottom: 4px;
  128. width: 100%;
  129. }
  130. </style>