【vue】字幕滚动

【vue】字幕滚动,第1张

方式一: css手写实现左右移动字幕

在需要的地方加上 marquee 类名即可

.marquee{
  color: #ff5722;
  text-align: right;
  animation: myMove 5s linear infinite forwards;
}

@keyframes myMove {
  0% {
      transform: translateX(0%);
  }
  50% {
      transform: translateX(-50%);
  }
  100% {
      transform: translateX(-100%);
  }
}
方式二:使用 vue-seamless-scroll

请参考官方链接:https://chenxuan0000.github.io/vue-seamless-scroll/guide/

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/web/946900.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-05-18
下一篇2022-05-18

发表评论

登录后才能评论

评论列表(0条)

    保存