vue中写一个文字滚动小功能~

项目中要用到文字滚动,就写了一个~

<template>
  <div class="leftTopBox">
    <div id="demo">
      <div class="nwwest-roll" id="nwwest-roll">
        <ul id="roll-ul" class="roll-ul">
          <li
            v-for="(item, index) in valList"
            ref="rollul"
            :class="{ anim: anim == true }"
            :key="index"
          >
            <span class="name">{{ item }}</span>
          </li>
        </ul>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      valList: [0, 0],
      anim: true
    }
  },
  props: {
    valNum: {
      type: Number
    }
  },
  // 如果使用serverData传过来的静态数据 请使用mounted()方法 并注释掉watch
  mounted() {},
  watch: {
    valNum(newV, oldV) {
      this.valList = [newV, oldV]
      setTimeout(() => {
        this.scroll(this.$refs.rollul)
      }, 50)
    }
  },
  methods: {
    scroll(el, type) {
      //字体动画
      //   console.log(el, type)
      el[0].style.marginTop = '-50px' // 按字体盒子大小来设置
      this.anim = !this.anim
      var that = this
      setTimeout(function() {
        el[0].style.marginTop = '0px'
        that.anim = !that.anim
      }, 10)
    }
  }
}
</script>
<style lang="scss" scoped>
.leftTopBox {
  width: 50%;
  .nwwest-roll {
    font-size: 40px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
  }

  .roll-ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nwwest-roll li {
    height: 50px;
    line-height: 50px;
  }

  .anim {
    transition: all 1.5s;
  }
}
</style>

—记录方便以后使用,文字翻滚效果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值