久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術(shù)文章
文章詳情頁

解決Vue的項目使用Element ui 走馬燈無法實現(xiàn)的問題

瀏覽:151日期:2022-12-19 10:54:33

1.在vue項目中引入element ui

http://element.eleme.io/#/zh-CN/component/carousel

引入后,HTML部分

<el-carousel height='150px'><el-carousel-item v-for='item in imgList' :key='item' ><h3><img :src='http://www.baoyu77737.com/bcjs/item' alt=''> </h3></el-carousel-item></el-carousel>

JS部分

<script>export default {data(){return {imgList:[require(’../../assets/img/images/a1.png’),require(’../../assets/img/images/a2.png’),require(’../../assets/img/images/a3.png’),require(’../../assets/img/images/a4.png’),require(’../../assets/img/images/a5.png’)]}},components: {}}</script>

用webpack搭建的項目不能直接使用絕對路徑,要用require,如果不使用這個,必須是線上圖片。http類型的

補充知識:基于vue 使用element UI框架 實現(xiàn)走馬燈 圖片高度自適應(yīng)

走馬燈代碼結(jié)構(gòu)走一遍 (imgList數(shù)組在data中聲明,此為本地數(shù)據(jù))

data() { return{ // 圖片需要引入, 否則無法顯示 imgList: [ {id: 0, idView: require(’../assets/images/banner3.jpg’)}, {id: 1, name: ’詳情’, idView: require(’../assets/images/banner2.jpg’)}, {id: 2, name: ’推薦’, idView: require(’../assets/images/banner1.jpg’)} ] }}

<template> <el-carousel :interval='5000' arrow='always' :height='imgHeight'> <el-carousel-item v-for='item in imgList' :key='item.id'> <el-row> <el-col :span='24'><img ref='imgHeight' :src='http://www.baoyu77737.com/bcjs/item.idView' /></el-col> </el-row> </el-carousel-item> </el-carousel></template>

element UI 官網(wǎng)地址戳這里

http://element-cn.eleme.io/#/zh-CN/component/carousel

Carousel 中有一個height參數(shù) 如果給固定值620px,那么它會出現(xiàn)如圖效果, 圖片的寬高隨可視窗口的改變等比放大或縮小,可視窗口縮小,圖片的寬度和高度縮小, 輪播圖的固定高度不變, so...如圖所示 如果圖片給height: 100%; 屬性,圖片會拉伸;好吧,那就換一個auto,則如圖所示

所以,要想圖片正常顯示,又不會出現(xiàn)空白條的辦法,就是動態(tài)改變輪播圖的高度跟圖片高度相等即可。

首先獲取圖片的高度,通過ref來獲取DOM元素

監(jiān)聽窗口發(fā)生改變時,獲取img的高度,給輪播圖height屬性添加屬性值

that.imgHeight = ’620px’window.onresize = function temp() { // 通過點語法獲取img的height屬性值 that.imgHeight = `${that.$refs.imgHeight[’0’].height}px`}

以上這篇解決Vue的項目使用Element ui 走馬燈無法實現(xiàn)的問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 全椒县| 抚顺县| 潜江市| 阆中市| 吉木乃县| 巢湖市| 拉孜县| 商河县| 南通市| 德兴市| 兖州市| 西乡县| 重庆市| 博客| 长治市| 延长县| 翼城县| 梁平县| 资阳市| 新郑市| 平原县| 封开县| 宁明县| 贵州省| 安福县| 泰安市| 静宁县| 陆河县| 康保县| 德保县| 花莲县| 塔河县| 海门市| 四子王旗| 高陵县| 读书| 扶余县| 大名县| 元谋县| 宽城| 湘乡市|