期望效果
在页面加载后,走马灯组件的高度与左图高度一致。
![]()
实现方法
先给左图加个ref,来方便我们获取dom元素的高度。之后定义一个photosHeight来设置走马灯的高度。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <template> <div> <div class="item"> <img :src="photoUrl" ref="photo" alt=""> <p>图一</p> </div> </div> <div class="item"> <el-carousel v-if="photos.length" :height="photosHeight"> <el-carousel-item v-for="(photo, index) in photos" :key="index"> <el-image style="width: 100%" :src="photo" fit="contain"></el-image> </el-carousel-item> </el-carousel> <p>图二</p> </div> </template>
|
js部分: 在图一加载时读取图一的高度并设置给走马灯
1 2 3 4 5
| this.$nextTick(() => { this.$refs.photo.onload = function() { this.photosHeight = this.height + 'px' } })
|