1. ホーム
  2. Web プログラミング
  3. ジャバスクリプト
  4. javascriptのクラスライブラリ

Vueはランニングライト形式のテキストを水平方向にスクロールする機能を実装している

2022-01-13 11:54:25

この例では、Vueが水平方向にスクロールするランニングライトスタイルのテキストを実装するための具体的なコードを、参考のために以下のように共有します。

必要条件

Vueプロジェクトのトップ、テキストを左右にスクロールさせるため

ステップ

1. 自分でコンポーネントをラップするか、自分で書くか、次のコードをコピーしてください。
2. ラッピング後、必要なコンポーネントに導入、登録、使用する必要がある

のコードを入力します。

ランニングライト効果専用のマーキーコンポーネントのラッピング

<template>
<! -- running light component -->
  <div class="marquee-wrap" ref="marquee-wrap">
    <div class="scroll" ref="scroll">
      <p class="marquee">{{text}}</p>
      <p class="copy" ref="copy"></p>
    </div>
    <p class="getWidth" ref="getWidth">{{text}}</p>
  </div>
</template>

<script>
export default {
  name: 'marquee',
  props: ['val'],
  data () {
    return {
      timer: null,
      text: ''
    }
  },
  created () {
    let timer = setTimeout(() => {
      this.move()
      clearTimeout(timer)
    }, 1000)
  },
  mounted () {
    for (let item of this.val) {
    this.text += item
    }
  },
  methods: {
    move () {
    let maxWidth = this.$refs['marquee-wrap'].clientWidth
    let width = this.$refs['getWidth'].scrollWidth
      if (width <= maxWidth) return
    let scroll = this.$refs['scroll']
    let copy = this.$refs['copy']
      copy.innerText = this.text
      let distance = 0 
      this.timer = setInterval(() => {
        distance -= 1
        if (-distance >= width) {
          distance = 16
        }
        scroll.style.transform = 'translateX(' + distance + 'px)'
      }, 20)
    }
  },
  beforeDestroy () {
    clearInterval(this.timer)
  }
}
</script>

<style scoped>
  .marquee-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .marquee{
    margin-right: 0.16rem;
  }
  p {
    word-break:keep-all;
    white-space: nowrap;
    font-size: 0.28rem;
  }
  .scroll {
    display: flex;
  }
  .getWidth {
    word-break:keep-all;
    white-space:nowrap;
    position: absolute;
    opacity: 0;
    top: 0;
  }
</style>

どのコンポーネントで使用される場合でも、次のように導入します。

// Introduce the running light component
import marquee from "@/components/marquee/marquee.vue";

参照・登録

export default {
  components: {
  // Register the marquee component
    marquee,
  },
 }

登録が終わると、次はテンプレートでこのコンポーネントを使ったHtmlスタイルになります。

<Marquee class="realData">
          <ul class="fa-scroll-cont">
            <li v-for="item in realData" :key="item.name">
              <span class="roll-text">{{ item.city }}</span>
            </li>
          </ul>
</Marquee>

次に効果です。

効果をより明確にするために、さらにいくつかのカットを追加

以上が今回の記事の内容ですが、皆様の学習の一助となり、スクリプトハウスをより一層応援していただければ幸いです。