SharePoint online- scrolling text horizontally (marquee)

Viewed 45

How do I have some text scrolling horizontally like marquee in SharePoint online? I am not sure what web part to use to achieve this? Thanks!

1 Answers

There is no SharePoint online out of the box web part which supports marquee text.

To achieve your requirements, you have below two options:

  1. Custom SPFx web part: Develop a custom SPFx web part from scratch to fit your requirements for using marquee text.

  2. Use Script editor web part for modern pages: Use Script editor web part for modern pages developed by community members and add custom HTML/CSS/JS to create marquee text.

Additional Reference: HTML Marquee Tag

Related