Carousel.vue 634 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <el-carousel :interval="5000" arrow="always" :height=height>
  3. <el-carousel-item v-for="item in banner" :key="item.id">
  4. <a :href="item.link" target="_blank">
  5. <div class="banner" :style="{backgroundImage: `url(${item.image}`}"></div>
  6. <!-- <img :src="item.image" :alt="item.title"/> -->
  7. </a>
  8. </el-carousel-item>
  9. </el-carousel>
  10. </template>
  11. <script>
  12. export default {
  13. props:{
  14. banner:[],
  15. height:String,
  16. }
  17. };
  18. </script>
  19. <style lang="scss" scoped>
  20. .banner {
  21. width: 100%;
  22. height: 100%;
  23. background-size: cover;
  24. background-repeat: no-repeat;
  25. background-position: center;
  26. }
  27. </style>