亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

vue如何實現文字上下滾動跑馬燈效果

vue
小億
799
2023-08-07 19:57:12
欄目: 編程語言

要在Vue中實現文字上下滾動的跑馬燈效果,可以使用CSS和Vue的動態綁定來實現。

首先,在Vue組件中定義一個變量來保存要展示的文字內容。然后使用CSS樣式來創建滾動效果。

以下是一個簡單的示例:

<template>

  <div class="marquee-container">

    <div class="marquee" :style="{ top: position + 'px' }">{{ text }}</div>

  </div>

</template>

<script>

export default {

  data() {

    return {

      text: '這是一段要滾動的文字',

      position: 0,

      speed: 2, // 滾動速度,可根據需要調整

      timer: null

    };

  },

  mounted() {

    this.startMarquee();

  },

  beforeDestroy() {

    this.stopMarquee();

  },

  methods: {

    startMarquee() {

      this.timer = setInterval(() => {

        this.position -= this.speed;

        // 當文字完全滾出容器時,重置位置

        const containerHeight = this.$el.offsetHeight;

        const contentHeight = this.$refs.marquee.offsetHeight;

        if (Math.abs(this.position) >= contentHeight) {

          this.position = containerHeight;

        }

      }, 20);

    },

    stopMarquee() {

      clearInterval(this.timer);

    }

  }

};

</script>

<style>

.marquee-container {

  height: 50px; /* 容器高度,可根據需要調整 */

  overflow: hidden;

}

.marquee {

  position: relative;

  transition: top 0.2s linear;

}

</style>

在上面的例子中,使用marquee-container類定義了一個高度固定的容器。在容器內部,使用marquee類來包裹要滾動的文字內容。通過綁定:style屬性,將文字的位置與變量position關聯起來。

在mounted鉤子函數中,調用startMarquee方法來開始滾動效果。在beforeDestroy鉤子函數中,調用stopMarquee方法來停止滾動。

這樣,當組件被渲染時,文字就會以指定的速度從上往下滾動,并且當文字完全滾出容器后,會重新回到容器頂部重新開始滾動。你可以根據需要調整滾動速度、容器高度和其他樣式。


0
电白县| 睢宁县| 沂水县| 古浪县| 苗栗市| 酒泉市| 青川县| 大新县| 石城县| 台北市| 汝州市| 浪卡子县| 故城县| 黄山市| 兴宁市| 柞水县| 海安县| 当涂县| 柘城县| 铜梁县| 营山县| 从化市| 龙门县| 惠来县| 济宁市| 天水市| 乐至县| 溆浦县| 宁明县| 萍乡市| 甘洛县| 龙井市| 昆山市| 冕宁县| 凌海市| 思茅市| 襄垣县| 商城县| 凯里市| 汽车| 通河县|