在有限空间内,循环播放同一类型的图片、文字等内容
用法:
<el-carousel :interval="5000" arrow="always">
<el-carousel-item v-for="item in 4" :key="item">
<h3>{{ item }}</h3>
</el-carousel-item>
</el-carousel>
定义高度:使用属性 hight(ex:使得轮播图高度自适应父级元素)
//定义变量
carouselHight:''
//添加监听 其中parentdom为父级元素id
window.addEventListener("resize", ()=>{
this.carouselHight = document.getElementById('parentdom') .offsetHeight;
this.$message.error( String(this.carouselHight))
});
CSS 样式
//定义每张卡片的样式
.el-carousel__item *{
background-color: rgba(0,0,0,0) !important;
}
// /* 左右箭头宽高 */
.el-carousel__arrow{
height: 50px;
width: 50px
}
/* 鼠标划过样式透明 */
.el-carousel__arrow:hover {
background-color: rgba(0,0,0,0);
}
//切换左右箭头样式
.el-carousel__arrow--left {
color: transparent;
/* 设置背景图片 */
background: url("../assets/SecurityScreenCarouselLeft.png") no-repeat center center;
background-size: 80px;
}
.el-carousel__arrow--right {
color: transparent;
/* 设置背景图片 */
background: url("../assets/SecurityScreenCarouselRight.png") no-repeat center center;
background-size: 80px;
}
文章来源地址https://www.toymoban.com/news/detail-743677.html
文章来源:https://www.toymoban.com/news/detail-743677.html
到了这里,关于elementUI 轮播图 ----Carousel 走马灯笔记的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!