当前位置:   article > 正文

elementui走马灯怎么加入图片_element走马灯怎么添加图片

element走马灯怎么添加图片
  1. <template>
  2. <el-carousel :interval="4000" type="card" height="500px">
  3. <el-carousel-item v-for="item in tubox" :key="item.id">
  4. <img :src="item.tu" class="tu">
  5. <h3 class="medium">{{ item }}</h3>
  6. </el-carousel-item>
  7. </el-carousel>
  8. </template>
  9. <!-- 轮播图,从data拿到图片 -->
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. tubox: [
  15. { id: 0, tu: require("../assets/tu1.jpg") },
  16. { id: 1, tu: require("../assets/tu1.jpg") },
  17. { id: 2, tu: require("../assets/tu1.jpg") },
  18. { id: 3, tu: require("../assets/tu1.jpg") },
  19. { id: 4, tu: require("../assets/tu1.jpg") },
  20. { id: 5, tu: require("../assets/tu1.jpg") }
  21. ]
  22. }
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style scoped>
  29. .el-carousel__item h3 {
  30. color: #475669;
  31. font-size: 14px;
  32. opacity: 0.75;
  33. line-height: 200px;
  34. margin: 0;
  35. }
  36. .el-carousel__item:nth-child(2n) {
  37. background-color: #99a9bf;
  38. }
  39. .el-carousel__item:nth-child(2n+1) {
  40. background-color: #d3dce6;
  41. }
  42. .tu {
  43. width: 100%;
  44. height: 100%;
  45. }
  46. </style>

elementui走马灯加入图片

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/250975
推荐阅读
相关标签
  

闽ICP备14008679号