1. 程式人生 > 程式設計 >vue時間線元件的使用方法

vue時間線元件的使用方法

本文例項為大家分享了時間線元件的具體實現程式碼,供大家參考,具體內容如下

效果

vue時間線元件的使用方法

vue-時間線元件(時間軸元件)程式碼

<template>
    <ul class="timeline-wrapper">
        <li class="timeline-item" v-for="t in timelineList" :key="t.id">
        <div class="timeline-box">
            <div class="out-circle">
                <div class="in-circle"></div>
            </div>
            <div class="long-line"></div>
        </div>
        <div class="timeline-content">
            <div class="timeline-date">{{t.date}}</div>
            <div class="timeline-title">{{ t.title}}</div>
            <div class="timeline-desc">{{ t.content}}</div>http://www.cppcns.com
</div> </li> </ul> </template> <script type="text/babel"> import Vue from 'vue' export default Vue.component('Timeline',{ name: "Timeline",props: { timelineList: { type: Array,default: () => { return [] } } } }) </script> <style scoped lang="s"> ul.timeline-wrapper { list-style: none; margin: 0; padding: 0; } /* 時間線 */ .timeline-item { position: relative; .timeline-box { text-align: center; position: absolute; .out-circle { width: 16px; height: 16px; background: rgba(14,116,218,0.1); box-shadow: 0px 4px 12px 0px rgba(0
,0.1); /*opacity: 0.1;*/ border-radius: 50%; display: flex; align-items: center; .in-circle { width: 8px; height: 8px; margin: 0 auto; background: rgba(14,1); border-radius: 50%; box-shadow: 0px 4px 12px 0px rgba(0,0.1); } } .long-line { width: 2px; height: 98px; background: rgba(14,1); box-shadow: 0px 4px 12px 0px rgba(0,0.1); opacity: 0.1; margin-left: 8px; } } .timeline-content { box-sizing: border-box; margin-left: 20px; height: 106px; padding: 0 0 0 20px; text-align: left; margin-bottom: 30px; .timeline-title { font-size: 14px; word-break: break-all; margin-bottom: 16px; color: #333; font-weight: 500; /*display: inline;*/ } http://www.cppcns.com
.timeline-date { font-size: 16px; color: #33www.cppcns.com3; font-weight: 500; margin-bottom: 16px; } .timeline-desc { font-size: 14px; color: #999999; } } } .timeline-item:last-of-tgDMjFypevtype .timeline-content { margin-bottom: 0; } </style>

應用

// 父元件引用
<timeline :timeline-list="dongtai"></timeline>
// 引入元件,記得元件路徑要根據自己的來
import Timeline from "./Timeline";
// 在data()返回的物件裡宣告陣列
dongtai:[]

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。