2019-08-23

时间轴的实现

<template>
  <div class="learnPath">
    <div class="part1">
      <div class="htitile">学习路径</div>
      <div class="parent" ref='parent' @mousedown='handleMouseDome' @mousemove='handleMouseMove' @mouseup='handleMouseUp'>
          <div class="timePath" ref='path'>
            <div class="year">2019年</div>
            <!-- 展开前 -->
            <div class="con1" v-if='!openDateList'>
              <div class="bor"></div>
              <div class="time">
                <div class="date" v-for='item in timelist' :key='item.id'>
                  <div class="txt">{{item.date}}</div>
                  <div :class="item.active ? 'active circle' : 'circle'"></div>
                </div>
              </div>
            </div>
            <!-- 展开后 -->
            <div class="con2" v-else ref='con2'>
              <div class="track">
                <div class="traL"></div>
                <div class="traC">
                  <ol>
                    <li>
                      <time>
                          05:30
                      </time>
                      <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li> 
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li> 
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li> 
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                  </ol>
                </div>
                <div class="traR">
                  <time>
                    05:30
                  </time>
                <i class="active"></i>
                </div>
              </div>
              <div class="track">
                <div class="traL">
                  <time>
                    05:30
                  </time>
                  <i></i>
                </div>
                <div class="traC">
                  <ol>
                    <li>
                      <time>
                          05:30
                      </time>
                      <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li> 
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li> 
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li> 
                    <li>
                      <time>
                        05:30
                    </time>
                    <i></i>
                    </li>
                  </ol>
                </div>
                <div class="traR"></div>
              </div>
              <!-- <div class="track">
                <div class="traL"></div>
                <div class="traC"></div>
                <div class="traR"></div>
              </div> -->
            </div>
            <!-- 按钮 -->
            <div class="open" @click='handleOrC'>
              <i class="el-icon-arrow-up"  v-if='openDateList'></i>
              <i class="el-icon-arrow-down" v-else></i>
            </div>
            <!-- 放大按钮 -->
            <div class="enlarge" v-if='openDateList'>
              <div class="percentage">{{maxScale*100 + '%'}}</div>
              <div class="add" @click='handleAdd'>
                <i class="el-icon-plus"></i>
              </div>
              <div class="reduce" @click='handleReduce'>
                <i class="el-icon-minus"></i>
              </div>
            </div>
          </div>
      </div>
    </div>
  </div>
</template>
<script>
import { Icon } from 'element-ui'
import KnowNew from '@components/myCourse/knowNew'
import CardTemplate from '@components/myCourse/cardTemplate'
export default {
  data() {
    return {
      timelist:[
        {
          date: '05.10',
          id: 0,
          active: true
        },
        {
          date: '05.15',
          id: 1,
          active: true
        },
        {
          date: '05.20',
          id: 2,
          active: true
        },
        {
          date: '05.25',
          id: 3,
          active: false
        },
        {
          date: '05.30',
          id: 4,
          active: false
        },
        {
          date: '06.05',
          id: 5,
          active: false
        },
        {
          date: '06.15',
          id: 6,
          active: false
        },
        {
          date: '06.20',
          id: 7,
          active: false
        },
      ],
      openDateList: false,
      boxX: null,
      boxY: null,
      isDrop: false, // 判断能否拖动
      maxScale: 1
    }
  },
  components: {
    KnowNew,
    CardTemplate
  },
  mounted () {
    if (this.openDateList){
      this.setItemPosition()
    }
    window.onmouseup = () => {
      this.isDrop = false
    }
  },
  methods: {
    setItemPosition () {
      const item = this.$refs.con2.children
      const topBor = item[0].children[0]
      let topBorH = getComputedStyle(topBor, null).borderTop
      topBorH = parseInt(topBorH)
      for (let i = 0; i < item.length; i++) {
        const lis = item[i]
        const tops = -i * topBorH
        lis.style.top = tops + 'px'
      }
    },
    // 展开或者关闭时间图
    handleOrC() {
      this.maxScale = 1
      this.openDateList = !this.openDateList;
      this.$refs.path.style.top = 0;
      this.$refs.path.style.left =  0
      this.setAnimation()
    },
    // 放大功能
    handleAdd() {
      if (this.maxScale >= 2) {
        this.maxScale = 2
      } else {
        this.maxScale += 0.5
      }
      this.setAnimation()
    },
    // 缩小功能
    handleReduce() {
      if (this.maxScale <=1 ) {
        this.maxScale = 1
      } else {
        this.maxScale -= 0.5
      }
      if (this.maxScale == 1) {
        this.$refs.path.style.left = 0;
        this.$refs.path.style.top = 0;
      } else if (this.maxScale == 1.5) {
        this.$refs.path.style.right = 0;
        this.$refs.path.style.top = 0;
        this.$refs.path.style.left =  0
      }
      this.setAnimation()
    },
    // 动画过度
    setAnimation() {
      this.$refs.path.style.transform = 'scale('+this.maxScale +')'
      this.$refs.path.style.webkitTransform = 'scale('+this.maxScale +')'
      this.$refs.path.style.msTransform = 'scale('+this.maxScale +')'
      this.$refs.path.style.oTransform = 'scale('+this.maxScale +')'
      this.$refs.path.style.mozTransform = 'scale('+this.maxScale +')'
      this.$refs.path.style.cursor = 'pointer'
      this.$refs.path.style.transition = 'transform 0.3s'
      this.$refs.path.style.webkitTransition = 'transform 0.3s'
      this.$refs.path.style.msTransition = 'transform 0.3s'
      this.$refs.path.style.oTransition = 'transform 0.3s'
      this.$refs.path.style.mozTransition = 'transform 0.3s'
    },
    // 鼠标按下事件
    handleMouseDome(e) {
      let box = this.$refs.path
      var e = e || window.event;//要用event这个对象来获取鼠标的位置
      this.boxX = e.clientX - box.offsetLeft;
      this.boxY = e.clientY - box.offsetTop;
      this.isDrop = true;//设为true表示可以移动
    },
    // 鼠标拖动事件
    handleMouseMove(e) {
      if (this.maxScale == 1) {
        return
      }
      //是否为可移动状态
      if(this.isDrop && this.openDateList) {
        let e = e || window.event
        let moveX = e.clientX - this.boxX;//得到距离左边移动距离
        let moveY = e.clientY - this.boxY;//得到距离上边移动距离
        this.setBor(moveX, moveY)
      }
    },

    setBor(x, y) {
      let moveX = x
      let moveY = y
      if(this.maxScale == 2) {
        let wX = this.$refs.parent.offsetWidth / 2
        let hY = this.$refs.parent.offsetHeight / 2
        if(moveX > wX) {
          moveX = wX
        } else if (-wX > moveX ){
          moveX = -wX
        }
        if(moveY > hY ) {
          moveY = hY
        } else if (-hY > moveY) {
          moveY = -hY
        }
      } else if (this.maxScale == 1.5) {
        let wX = this.$refs.parent.offsetWidth / 4
        let hY = this.$refs.parent.offsetHeight / 4
        if(moveX > wX) {
          moveX = wX
        } else if (-wX > moveX ){
          moveX = -wX
        }
        if(moveY > hY ) {
          moveY = hY
        } else if (-hY > moveY) {
          moveY = -hY
        }
      }
      this.$refs.path.style.left = moveX + "px";
      this.$refs.path.style.top = moveY + "px";
    },

    // 鼠标弹起
    handleMouseUp() {
      this.isDrop = false
      this.$refs.parent.mousemove = null
      document.onmouseup = () => {
        this.$refs.parent.mousemove = null
      }
    },

  },
}
</script>
<style lang='scss' scoped>
  .learnPath{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0px 30px;
    .htitile{
      padding: 32px 0px 19px 0px;
      border-bottom: 1px solid #E6E8E9;
    }
    .parent{
      overflow: hidden;
      position: relative;
      margin-top: 12px;
    }
    .timePath{
      width: 100%;
      /* height: 162px; */
      background-color: #E8F1EC;
      position: relative;
      overflow: hidden;
      .year{
        text-align: center;
        font-size: 20px;
        font-family: SourceHanSansCN-Bold;
        font-weight: bold;
        color: #319F60;
        width: 100%;
        padding: 20px 0;
      }
      .con1{
        width: 100%;
        position: relative;
        /* padding: 42px 0; */
        padding-top: 42px;
        color: #4BBE7C;
        .bor{
          width: 100%;
          height: 2px;
          background: #5BCA8A;
        }
        .time{
          position: absolute;
          /* top: -25px; */
          top: 5px;
          width: 100%;
          display: flex;
          .date{
                margin: 0px 38px;
            .txt{
              padding-bottom: 10px;
            }
          }
          .circle{
            width:18px;
            height:18px;
            margin: 0 auto;
            background:#EDF8F2;
            border:2px solid rgba(128, 206, 161, 1);
            box-shadow:0px 4px 8px 0px rgba(75, 128, 199, 0.35);
            border-radius:50%;
          }
        }
      }
      .active{
        background:linear-gradient(-36deg,rgba(79,185,124,1),rgba(107,224,157,1)) !important;
      }
      .con2{
        position: relative;
        margin-top: 45px;
        color: #4BBE7C;
        font-weight:400;
        .track{
          width: 892px;
          /* flex: 1; */
          height: 100px;
          margin: 0 auto;
          padding:0;
          display: flex;
          position: relative;
          &:nth-of-type(1){
            div:nth-of-type(1){
              display: none !important;
            }
            .traC{
              width: 90%;
            }
          }
          &:nth-of-type(odd){
            div:first-child{
              visibility: hidden;
            }
          }
          &:nth-of-type(even){
            div:last-child{
              visibility: hidden;
            }
          }
          .traL{
            width: 100px;
            height: 100%;
            box-sizing: border-box;
            border: 2px solid #5BCA8A;
            border-radius: 100% 0 0 100%;
            border-right: none;
            line-height: 100px;
            time{
              display: block;
              text-align: right;
              padding-right: 36px;
            }
            i{
              position: absolute;
              left: -9px;top: 50%;
              width: 18px;
              height: 18px;
              margin: -9px 0 0 0;
              box-sizing: border-box;
              border: 2px solid #80CEA1;
              background: #fff;
              border-radius: 50%;
            }
          }
          .traC{
            width: 80%;
            height: 100px;
            border-top: 2px solid #5BCA8A;
            box-sizing: border-box;
            ol{
              width: 110%;
              height: 50%;
              position: relative;
              top: -50%;
              display: flex;
              left: -5%;
              z-index: 10;
              li{
                flex: 1;
                position: relative;
                text-align: center;
                line-height: 50px;
                time{
                  display: block;
                  font-size: 16px;
                }
                i{
                  position: absolute;
                  left: 50%;
                  bottom: -9px;
                  width: 18px;
                  height: 18px;
                  box-sizing: border-box;
                  border: 2px solid #80CEA1;
                  border-radius: 50%;
                  margin: 0 0 0 -9px;
                  background: #fff;
                 
                }
              }
            }  



          }
          .traR{
            width: 100px;
            height: 100%;
            border: 2px solid #5BCA8A;
            border-radius: 0 100% 100% 0;
            border-left: none;
            box-sizing: border-box;
            line-height: 100px;
            position: relative;
            time{
              display: block;
              text-align: left;
              padding-left: 36px;
            }
            i{
              position: absolute;
              right: -9px;top: 50%;
              width: 18px;
              height: 18px;
              margin: -9px 0 0 0;
              box-sizing: border-box;
              border: 2px solid #80CEA1;
              background: #fff;
              border-radius: 50%;
            }
          }
        }
      }
      .open{
        width:60px;
        height:16px;
        background:#80CEA1;
        border-radius:10px 10px 0px 0px;
        color: #fff;
        font-weight: bold;
        text-align: center;
        font-size: 18px;
        margin: 30px auto 0;
      }
      .enlarge{
        position: absolute;
        top: 20px;
        right: 15px;
        line-height: 24px;
        text-align: center;
        color: #fff;
        div{
          display: inline-block;
          margin-right: 5px;
        }
        .percentage{
          width:60px;
          height:24px;
          background:#ACD7BE;
          border-radius:12px;
        }
        .add{
          width:24px;
          height:24px;
          background:rgba(24,170,31,1);
          border-radius:2px;
        }
        .reduce{
          width:24px;
          height:24px;
          background:rgba(24,170,31,1);
          border-radius:2px;
        }
      }
    }
  }
</style>
image.png

备注:
该组件主要是实现弧形样式的实现,还有div的放大和缩小动画的实现,以及鼠标按下拖动效果的实现

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,723评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,485评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,998评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,323评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,355评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,079评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,389评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,019评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,519评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,971评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,100评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,738评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,293评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,289评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,517评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,547评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,834评论 2 345

推荐阅读更多精彩内容

  • CSS核心属性(下) padding 内边距 元素内容到元素边框的距离padding-top 上方向pad...
    北森丶阅读 79评论 0 1
  • 一、MaskRCNN模型 MaskRCNN模型为图像中的每个对象实例同时生成边界框和分割掩码。 它基于特征金字塔网...
    qiwener阅读 2,586评论 0 0
  • 车架(材质,架高,走线) 材质:铁,铝,镁合金,钛合金,碳 头管尺寸:关系到前叉组件,前叉, 常用尺寸为:...
    小伟阅读 1,177评论 0 1
  • 《活在当下》的作者拉姆·达斯(把东方古老的心灵修炼方法以白话方式介绍给西方)是一个曾经到世界各地去演讲去教导,是一...
    悠导阅读 245评论 0 0
  • rsync rsync命令是一个远程数据同步工具,可通过LAN/WAN快速同步多台主机间的文件。rsync使用所谓...
    PengFuChuan阅读 941评论 0 0