最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Vue標(biāo)尺插件使用詳解

 更新時(shí)間:2022年02月27日 16:22:36   作者:覓長生  
這篇文章主要為大家詳細(xì)介紹了Vue標(biāo)尺插件的使用方法,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文為大家分享了Vue標(biāo)尺插件使用的具體代碼,供大家參考,具體內(nèi)容如下

可根據(jù)高和寬度自適應(yīng),主要傳值為寬度和距離零刻度的距離,代碼和圖片如下。

<template>
?? ?<div class="demoRule">
?? ??? ?<el-row class=" main">
?? ??? ??? ?<div class="rightBorder" v-if="duiData&&duiData.length>0"></div>
?? ??? ??? ?<div class="ruleF" v-for="(item,indexDui) in duiData" :key="indexDui" :style="{'height':(duiData&&duiData.length>0)?(100/duiData.length)+'%':'100%'}">
?? ??? ??? ??? ?<div class="content" :style="{'border-top':(indexDui==0?'1.5px solid #9c9c9c':'')}">
?? ??? ??? ??? ??? ?<div class="faRe" v-for="(itemF,indexF) in item.faReData" :key="indexF" :style="{'right':itemF.right}"> (發(fā)熱)</div>
?? ??? ??? ??? ??? ?<div class="boxes" v-for="(itemDuo,indexDuo) in item.duoData" :key="indexDuo" :style="{'width':itemDuo.width,'right':itemDuo.right,'background':colorData[itemDuo.color],}">{{itemDuo.content}} </div>
?? ??? ??? ??? ?</div>
?? ??? ??? ??? ?<div v-for="(itemNum, indexNum) in 24 " :key="indexNum" class="ruleBody" :style="{'margin-right':(indexNum==0?'2%':'')}">
?? ??? ??? ??? ??? ?<div class="num" v-if="indexDui%2==0">{{itemNum*50}}</div>
?? ??? ??? ??? ?</div>
?? ??? ??? ?</div>
?? ??? ?</el-row>
?? ?</div>
</template>
<script>

export default {
?? ?data () {
?? ??? ?return {
?? ??? ??? ?colorData: {
?? ??? ??? ??? ?1: "#aad494",
?? ??? ??? ??? ?2: "#aab6dc",
?? ??? ??? ??? ?3: "#faf5b3",
?? ??? ??? ??? ?4: "#c5acd3",
?? ??? ??? ??? ?5: "#faa5a5",
?? ??? ??? ??? ?6: "#faacc4",
?? ??? ??? ?},
?? ??? ??? ?duiData: [
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?duoData: [
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "5%",
?? ??? ??? ??? ??? ??? ??? ?right: "0%",
?? ??? ??? ??? ??? ??? ??? ?color: "1",
?? ??? ??? ??? ??? ??? ??? ?content: "爽膚水",
?? ??? ??? ??? ??? ??? ?},
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "8%",
?? ??? ??? ??? ??? ??? ??? ?right: "26%",
?? ??? ??? ??? ??? ??? ??? ?color: "2",
?? ??? ??? ??? ??? ??? ??? ?content: "康師傅",
?? ??? ??? ??? ??? ??? ?}, {
?? ??? ??? ??? ??? ??? ??? ?width: "6%",
?? ??? ??? ??? ??? ??? ??? ?right: "75%",
?? ??? ??? ??? ??? ??? ??? ?color: "3",
?? ??? ??? ??? ??? ??? ??? ?content: "電風(fēng)扇",
?? ??? ??? ??? ??? ??? ?}
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ??? ?faReData: [
?? ??? ??? ??? ??? ??? ?{ right: "3%", },
?? ??? ??? ??? ??? ??? ?{ right: "36%", },
?? ??? ??? ??? ??? ??? ?{ right: "86%", }
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ?},
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?duoData: [
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "3%",
?? ??? ??? ??? ??? ??? ??? ?right: "25%",
?? ??? ??? ??? ??? ??? ??? ?color: "4",
?? ??? ??? ??? ??? ??? ??? ?content: "娃哈哈",
?? ??? ??? ??? ??? ??? ?},
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "7%",
?? ??? ??? ??? ??? ??? ??? ?right: "56%",
?? ??? ??? ??? ??? ??? ??? ?color: "5",
?? ??? ??? ??? ??? ??? ??? ?content: "集裝箱",
?? ??? ??? ??? ??? ??? ?}, {
?? ??? ??? ??? ??? ??? ??? ?width: "7%",
?? ??? ??? ??? ??? ??? ??? ?right: "85%",
?? ??? ??? ??? ??? ??? ??? ?color: "6",
?? ??? ??? ??? ??? ??? ??? ?content: "意大利炮",
?? ??? ??? ??? ??? ??? ?}
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ??? ?faReData: [
?? ??? ??? ??? ??? ??? ?{ right: "5%", },
?? ??? ??? ??? ??? ??? ?{ right: "66%", },
?? ??? ??? ??? ??? ??? ?{ right: "76%", }
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ?},
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?duoData: [
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "5%",
?? ??? ??? ??? ??? ??? ??? ?right: "5%",
?? ??? ??? ??? ??? ??? ??? ?color: "1",
?? ??? ??? ??? ??? ??? ??? ?content: "爽膚水",
?? ??? ??? ??? ??? ??? ?},
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "8%",
?? ??? ??? ??? ??? ??? ??? ?right: "26%",
?? ??? ??? ??? ??? ??? ??? ?color: "2",
?? ??? ??? ??? ??? ??? ??? ?content: "康師傅",
?? ??? ??? ??? ??? ??? ?}, {
?? ??? ??? ??? ??? ??? ??? ?width: "6%",
?? ??? ??? ??? ??? ??? ??? ?right: "75%",
?? ??? ??? ??? ??? ??? ??? ?color: "3",
?? ??? ??? ??? ??? ??? ??? ?content: "電風(fēng)扇",
?? ??? ??? ??? ??? ??? ?}
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ??? ?faReData: [
?? ??? ??? ??? ??? ??? ?{ right: "3%", },
?? ??? ??? ??? ??? ??? ?{ right: "36%", },
?? ??? ??? ??? ??? ??? ?{ right: "86%", }
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ?},
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?duoData: [
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "3%",
?? ??? ??? ??? ??? ??? ??? ?right: "25%",
?? ??? ??? ??? ??? ??? ??? ?color: "4",
?? ??? ??? ??? ??? ??? ??? ?content: "娃哈哈",
?? ??? ??? ??? ??? ??? ?},
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "7%",
?? ??? ??? ??? ??? ??? ??? ?right: "56%",
?? ??? ??? ??? ??? ??? ??? ?color: "5",
?? ??? ??? ??? ??? ??? ??? ?content: "集裝箱",
?? ??? ??? ??? ??? ??? ?}, {
?? ??? ??? ??? ??? ??? ??? ?width: "7%",
?? ??? ??? ??? ??? ??? ??? ?right: "85%",
?? ??? ??? ??? ??? ??? ??? ?color: "6",
?? ??? ??? ??? ??? ??? ??? ?content: "意大利炮",
?? ??? ??? ??? ??? ??? ?}
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ??? ?faReData: [
?? ??? ??? ??? ??? ??? ?{ right: "5%", },
?? ??? ??? ??? ??? ??? ?{ right: "66%", },
?? ??? ??? ??? ??? ??? ?{ right: "76%", }
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ?},
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?duoData: [
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "5%",
?? ??? ??? ??? ??? ??? ??? ?right: "5%",
?? ??? ??? ??? ??? ??? ??? ?color: "1",
?? ??? ??? ??? ??? ??? ??? ?content: "爽膚水",
?? ??? ??? ??? ??? ??? ?},
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "8%",
?? ??? ??? ??? ??? ??? ??? ?right: "26%",
?? ??? ??? ??? ??? ??? ??? ?color: "2",
?? ??? ??? ??? ??? ??? ??? ?content: "康師傅",
?? ??? ??? ??? ??? ??? ?}, {
?? ??? ??? ??? ??? ??? ??? ?width: "6%",
?? ??? ??? ??? ??? ??? ??? ?right: "75%",
?? ??? ??? ??? ??? ??? ??? ?color: "3",
?? ??? ??? ??? ??? ??? ??? ?content: "電風(fēng)扇",
?? ??? ??? ??? ??? ??? ?}
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ??? ?faReData: [
?? ??? ??? ??? ??? ??? ?{ right: "3%", },
?? ??? ??? ??? ??? ??? ?{ right: "36%", },
?? ??? ??? ??? ??? ??? ?{ right: "86%", }
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ?},
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?duoData: [
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "3%",
?? ??? ??? ??? ??? ??? ??? ?right: "25%",
?? ??? ??? ??? ??? ??? ??? ?color: "4",
?? ??? ??? ??? ??? ??? ??? ?content: "娃哈哈",
?? ??? ??? ??? ??? ??? ?},
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "7%",
?? ??? ??? ??? ??? ??? ??? ?right: "56%",
?? ??? ??? ??? ??? ??? ??? ?color: "5",
?? ??? ??? ??? ??? ??? ??? ?content: "集裝箱",
?? ??? ??? ??? ??? ??? ?}, {
?? ??? ??? ??? ??? ??? ??? ?width: "7%",
?? ??? ??? ??? ??? ??? ??? ?right: "85%",
?? ??? ??? ??? ??? ??? ??? ?color: "6",
?? ??? ??? ??? ??? ??? ??? ?content: "意大利炮",
?? ??? ??? ??? ??? ??? ?}
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ??? ?faReData: [
?? ??? ??? ??? ??? ??? ?{ right: "5%", },
?? ??? ??? ??? ??? ??? ?{ right: "66%", },
?? ??? ??? ??? ??? ??? ?{ right: "76%", }
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ?},
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?duoData: [
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "5%",
?? ??? ??? ??? ??? ??? ??? ?right: "5%",
?? ??? ??? ??? ??? ??? ??? ?color: "1",
?? ??? ??? ??? ??? ??? ??? ?content: "爽膚水",
?? ??? ??? ??? ??? ??? ?},
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "8%",
?? ??? ??? ??? ??? ??? ??? ?right: "26%",
?? ??? ??? ??? ??? ??? ??? ?color: "2",
?? ??? ??? ??? ??? ??? ??? ?content: "康師傅",
?? ??? ??? ??? ??? ??? ?}, {
?? ??? ??? ??? ??? ??? ??? ?width: "6%",
?? ??? ??? ??? ??? ??? ??? ?right: "75%",
?? ??? ??? ??? ??? ??? ??? ?color: "3",
?? ??? ??? ??? ??? ??? ??? ?content: "電風(fēng)扇",
?? ??? ??? ??? ??? ??? ?}
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ??? ?faReData: [
?? ??? ??? ??? ??? ??? ?{ right: "3%", },
?? ??? ??? ??? ??? ??? ?{ right: "36%", },
?? ??? ??? ??? ??? ??? ?{ right: "86%", }
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ?},
?? ??? ??? ??? ?{
?? ??? ??? ??? ??? ?duoData: [
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "3%",
?? ??? ??? ??? ??? ??? ??? ?right: "25%",
?? ??? ??? ??? ??? ??? ??? ?color: "4",
?? ??? ??? ??? ??? ??? ??? ?content: "娃哈哈",
?? ??? ??? ??? ??? ??? ?},
?? ??? ??? ??? ??? ??? ?{
?? ??? ??? ??? ??? ??? ??? ?width: "7%",
?? ??? ??? ??? ??? ??? ??? ?right: "56%",
?? ??? ??? ??? ??? ??? ??? ?color: "5",
?? ??? ??? ??? ??? ??? ??? ?content: "集裝箱",
?? ??? ??? ??? ??? ??? ?}, {
?? ??? ??? ??? ??? ??? ??? ?width: "7%",
?? ??? ??? ??? ??? ??? ??? ?right: "85%",
?? ??? ??? ??? ??? ??? ??? ?color: "6",
?? ??? ??? ??? ??? ??? ??? ?content: "意大利炮",
?? ??? ??? ??? ??? ??? ?}
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ??? ?faReData: [
?? ??? ??? ??? ??? ??? ?{ right: "5%", },
?? ??? ??? ??? ??? ??? ?{ right: "66%", },
?? ??? ??? ??? ??? ??? ?{ right: "76%", }
?? ??? ??? ??? ??? ?],
?? ??? ??? ??? ?},
?? ??? ??? ?],

?? ??? ?};
?? ?},
?? ?watch: {},
?? ?created () {

?? ?},
?? ?mounted () {
?? ??? ?// ruleF?? ?
?? ?},
?? ?methods: {}
};
</script>
<style lang="scss" scoped>
.demoRule {
?? ?width: calc(100% - 30px);
?? ?height: calc(100vh - 131px);
?? ?background: #f3f3f3;
?? ?padding: 15px;
}
.main {
?? ?width: 95%;
?? ?height: 95%;
?? ?margin: 0px auto;
?? ?margin-top: 1%;
?? ?padding: 10px;
?? ?border: 1px solid #eaeaea;
?? ?position: relative;
?? ?// background: white;
}
.rightBorder {
?? ?position: absolute;
?? ?width: 1.5px;
?? ?height: calc(100% - 20px);
?? ?background: #c3c3c3;
?? ?top: 10px;
?? ?right: calc(2% + 7px);
?? ?z-index: 100;
}

.ruleF {
?? ?width: 100%;
?? ?font-size: 12px;
?? ?color: #909399;
}
.content {
?? ?overflow: hidden;
?? ?position: relative;
?? ?width: 96%;
?? ?margin-left: 2%;
?? ?height: calc(100% - 30px);
?? ?border-left: 1.5px solid #777777;
?? ?background: #ffffff;
?? ?// border-right: 1.5px solid #777777;
}
.faRe {
?? ?z-index: 101;
?? ?position: absolute;
?? ?color: red;
?? ?top: 5px;
}
.boxes {
?? ?z-index: 1;
?? ?height: 100%;
?? ?position: absolute;
?? ?top: 0px;
?? ?color: #0a2731;
?? ?justify-content: center;
?? ?align-items: center;
?? ?text-align: center;
?? ?display: flex;
?? ?font-weight: bold;
}
.ruleBody {
?? ?width: 4%;
?? ?height: 30px;
?? ?background: url("../../assets/images/rule.png");
?? ?background-repeat: no-repeat;
?? ?background-size: 100% 100%;
?? ?float: right;
}
.num {
?? ?position: relative;
?? ?margin-left: -10px;
?? ?z-index: 100;
?? ?margin-top: 13px;
}
</style>

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • 使用idea創(chuàng)建vue項(xiàng)目的圖文教程

    使用idea創(chuàng)建vue項(xiàng)目的圖文教程

    Vue.js是一套構(gòu)建用戶界面的框架,只關(guān)注視圖層,它不僅易于上手,還便于與第三方庫或既有項(xiàng)目整合,下面這篇文章主要給大家介紹了關(guān)于使用idea創(chuàng)建vue項(xiàng)目的相關(guān)資料,需要的朋友可以參考下
    2022-08-08
  • Vue如何實(shí)現(xiàn)組件的源碼解析

    Vue如何實(shí)現(xiàn)組件的源碼解析

    本篇文章主要介紹了Vue如何實(shí)現(xiàn)組件的源碼解析,組件繼承分為兩大類,全局組件和局部組件,有興趣的可以了解一下
    2017-06-06
  • vue+element表格實(shí)現(xiàn)多層數(shù)據(jù)的嵌套方式

    vue+element表格實(shí)現(xiàn)多層數(shù)據(jù)的嵌套方式

    這篇文章主要介紹了vue+element表格實(shí)現(xiàn)多層數(shù)據(jù)的嵌套方式,具有很好的參考價(jià)值。希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-09-09
  • Vue實(shí)現(xiàn)簡單計(jì)算器

    Vue實(shí)現(xiàn)簡單計(jì)算器

    這篇文章主要為大家詳細(xì)介紹了Vue實(shí)現(xiàn)簡單計(jì)算器,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-01-01
  • vue3+Typescript實(shí)現(xiàn)路由標(biāo)簽頁和面包屑功能

    vue3+Typescript實(shí)現(xiàn)路由標(biāo)簽頁和面包屑功能

    在使用 Vue.js 開發(fā)后臺管理系統(tǒng)時(shí),經(jīng)常會遇到需要使用路由標(biāo)簽頁的場景,這篇文章主要介紹了vue3+Typescript實(shí)現(xiàn)路由標(biāo)簽頁和面包屑,需要的朋友可以參考下
    2023-05-05
  • Vue實(shí)現(xiàn)添加數(shù)據(jù)到二維數(shù)組并顯示

    Vue實(shí)現(xiàn)添加數(shù)據(jù)到二維數(shù)組并顯示

    這篇文章主要介紹了Vue實(shí)現(xiàn)添加數(shù)據(jù)到二維數(shù)組并顯示方式,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-04-04
  • Vue.2.0.5過渡效果使用技巧

    Vue.2.0.5過渡效果使用技巧

    這篇文章主要介紹了Vue.2.0.5過渡效果使用技巧,實(shí)例分析了Vue.2.0.5過渡效果的技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下。
    2017-03-03
  • Vue自定義指令實(shí)現(xiàn)checkbox全選功能的方法

    Vue自定義指令實(shí)現(xiàn)checkbox全選功能的方法

    下面小編就為大家分享一篇Vue自定義指令實(shí)現(xiàn)checkbox全選功能的方法,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-02-02
  • vue $mount 和 el的區(qū)別說明

    vue $mount 和 el的區(qū)別說明

    這篇文章主要介紹了vue $mount 和 el的區(qū)別說明,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-09-09
  • 詳解vue.js全局組件和局部組件

    詳解vue.js全局組件和局部組件

    這篇文章主要介紹了詳解vue.js全局組件和局部組件,實(shí)例分析了全局組件和局部的技巧,有興趣的可以了解一下。
    2017-04-04

最新評論

扶余县| 黄梅县| 蒙自县| 灌阳县| 广德县| 黄梅县| 荔波县| 老河口市| 潜山县| 新郑市| 沁水县| 哈巴河县| 新干县| 东乌珠穆沁旗| 金门县| 菏泽市| 临颍县| 梅河口市| 宜城市| 延寿县| 聂拉木县| 于田县| 乐至县| 庆元县| 莎车县| 沈丘县| 东乡| 三江| 攀枝花市| 厦门市| 崇州市| 灵寿县| 普宁市| 靖远县| 万源市| 黎城县| 西丰县| 朝阳县| 拜泉县| 科技| 怀安县|