banner.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <template>
  2. <div class="common-banner" :style="{'height': height + 'px'}">
  3. <img class="bg-img" :src="img" :style="{'height': height + 'px', 'max-height': height + 'px'}" alt="" srcset="">
  4. <div class="bg-content">
  5. <slot></slot>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. props: {
  12. img: {
  13. type: String,
  14. default: ''
  15. },
  16. height: {
  17. type: Number,
  18. default: 521
  19. }
  20. },
  21. data() {
  22. return {
  23. // bannerImg: require('~/assets/images/products/product_banner.png')
  24. }
  25. }
  26. }
  27. </script>
  28. <style lang="scss">
  29. .common-banner {
  30. // height: 521px;
  31. position: relative;
  32. margin: 0 auto;
  33. overflow: hidden;
  34. text-align: center;
  35. max-width: 1920px;
  36. .bg-img {
  37. position: absolute;
  38. top: 0px;
  39. left: 50%;
  40. bottom: 0px;
  41. right: 0px;
  42. z-index: 1;
  43. -webkit-transform: translateX(-50%);
  44. transform: translateX(-50%);
  45. max-width: 1920px;
  46. // max-height: 521px;
  47. // height: 521px;
  48. display: block;
  49. }
  50. .bg-content {
  51. position: absolute;
  52. top: 0;
  53. z-index: 10;
  54. height: 100%;
  55. width: 100%;
  56. background: rgba(13, 92, 250, 0.8);
  57. }
  58. h2 {
  59. position: absolute;
  60. top: 50%;
  61. left: 50%;
  62. transform: translate(-50%, -50%);
  63. font-size: 66px;
  64. font-family: PingFangSC-Medium, PingFang SC;
  65. font-weight: 500;
  66. color: #FFFFFF;
  67. z-index: 10;
  68. }
  69. h4 {
  70. position: absolute;
  71. top: 50%;
  72. left: 50%;
  73. transform: translate(-50%, -50%);
  74. font-size: 18px;
  75. font-family: PingFangSC-Regular, PingFang SC;
  76. font-weight: 400;
  77. color: #FFFFFF;
  78. line-height: 25px;
  79. z-index: 10;
  80. margin-top: 82px;
  81. }
  82. }
  83. .content-wrap {
  84. margin-top: 85px;
  85. width: 100%;
  86. position: absolute;
  87. z-index: 10;
  88. .content {
  89. display: flex;
  90. justify-content: space-between;
  91. align-items: center;
  92. }
  93. .title {
  94. width: 396px;
  95. height: 92px;
  96. font-size: 66px;
  97. font-family: PingFangSC-Medium, PingFang SC;
  98. font-weight: 500;
  99. color: #FFFFFF;
  100. line-height: 92px;
  101. }
  102. }
  103. </style>