UniversityStyle.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <div>
  3. <!-- VR -->
  4. <div class="image-item">
  5. <div class="cover-image vr" >
  6. <div class="colleges-imgs-mask">
  7. <i class="iconfont icon-vr" style="font-size: 28px"></i>
  8. </div>
  9. </div>
  10. <p class="mt15 text-overflow-ellipsis f14 lh20">VR校园</p>
  11. </div>
  12. <!-- 视频 -->
  13. <div class="image-item">
  14. <div class="cover-image video" >
  15. <div class="colleges-imgs-mask">
  16. <i class="iconfont icon-bofang" style="font-size: 28px"></i>
  17. </div>
  18. </div>
  19. <p class="mt15 text-overflow-ellipsis f14 lh20">清华大学</p>
  20. </div>
  21. <!-- 图片列表-->
  22. <div class="image-item">
  23. <el-image class="cover-image" fit="fill" src="https://img1.youzy.cn/content/media/thumbs/p00066675.jpeg" :preview-src-list="srcList"></el-image>
  24. <p class="mt15 text-overflow-ellipsis f14 lh20">校门</p>
  25. </div>
  26. <div class="image-item">
  27. <el-image class="cover-image" fit="fill" src="https://img1.youzy.cn/content/media/thumbs/p00065517.jpeg" :preview-src-list="srcList"></el-image>
  28. <p class="mt15 text-overflow-ellipsis f14 lh20">中央主楼</p>
  29. </div>
  30. <div class="image-item">
  31. <el-image class="cover-image" fit="fill" src="https://img1.youzy.cn/content/media/thumbs/p00065520.jpeg" :preview-src-list="srcList"></el-image>
  32. <p class="mt15 text-overflow-ellipsis f14 lh20">伟伦楼</p>
  33. </div>
  34. </div>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. srcList: [
  41. 'https://img1.youzy.cn/content/media/thumbs/p00066675.jpeg',
  42. 'https://img1.youzy.cn/content/media/thumbs/p00065517.jpeg',
  43. 'https://img1.youzy.cn/content/media/thumbs/p00065520.jpeg'
  44. ]
  45. }
  46. }
  47. }
  48. </script>
  49. <style scoped lang="scss">
  50. .image-item:nth-of-type(5n) {
  51. margin-right: 0;
  52. }
  53. .image-item{
  54. width: 217px;
  55. cursor: pointer;
  56. margin-right: 30px;
  57. margin-top: 20px;
  58. float: left;
  59. color: #333;
  60. .cover-image {
  61. width: 217px;
  62. height: 120px;
  63. background-repeat: no-repeat;
  64. background-size: 100% 100%;
  65. background-position: 50%;
  66. border-radius: 4px;
  67. position: relative;
  68. cursor: pointer;
  69. }
  70. .vr{
  71. background-image: url("http://toc.cn-bj.ufileos.com/media/files/20210414/9d02bb82.png");
  72. }
  73. .video {
  74. background-image: url("http://img1.youzy.cn/content/media/thumbs/p00176063.jpeg");
  75. }
  76. .colleges-imgs-mask {
  77. position: absolute;
  78. top: 0;
  79. left: 0;
  80. width: 217px;
  81. height: 120px;
  82. background: rgba(0,0,0,.5);
  83. color: #fff;
  84. text-align: center;
  85. line-height: 120px;
  86. border-radius: 4px;
  87. overflow: hidden;
  88. }
  89. &:hover{
  90. color: #42b983;
  91. }
  92. }
  93. </style>