banner.vue 745 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div class="common-banner"><img :src="img" alt="" srcset=""></div>
  3. </template>
  4. <script>
  5. export default {
  6. props: {
  7. img: {
  8. type: String,
  9. default: ''
  10. }
  11. },
  12. data() {
  13. return {
  14. // bannerImg: require('~/assets/images/products/product_banner.png')
  15. }
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. .common-banner {
  21. width: 100%;
  22. height: 521px;
  23. position: relative;
  24. font-size: 0;
  25. img {
  26. position: absolute;
  27. top: 0px;
  28. left: 50%;
  29. bottom: 0px;
  30. right: 0px;
  31. z-index: 1;
  32. -webkit-transform: translateX(-50%);
  33. transform: translateX(-50%);
  34. max-width: 2560px;
  35. max-height: 521px;
  36. height: 521px;
  37. display: block;
  38. }
  39. }
  40. </style>