Lichtkrant

agd_drive
28 Posts
agd_drive posted this 17 January 2025
Ask a Question

Is er een ingebouwde lichtkrant die over het beeld loopt?

Met vriendelijke groeten,

Gert

Vote to pay developers attention to this features or issue.
3 Replies
Order By: Standard | Newest
Support Team posted this 17 January 2025

Dear Gert,

Thank you for your question!

Nicepage does not have a built-in feature for a scrolling marquee (text running across the screen). However, you can create a similar effect using animations or adding custom HTML and CSS code to your design.
Please check the following sample below:

Add HTMl element ==> Add the following code to the code text box on the Property Panel

<div style="overflow: hidden; white-space: nowrap; width: 100%; background-color: #f4f4f4; padding: 10px;">
  <span style="display: inline-block; animation: marquee 10s linear infinite; font-size: 20px; color: #333;">
    Welcome to my website! This is a scrolling marquee example.
  </span>
</div>
182rytg.png

Add the Style to your code

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
1904123.png

...................................................
Sincerely,
Ahmad.
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

agd_drive
28 Posts
agd_drive posted this 18 January 2025

Thanks!

Gert

Support Team
Support Team posted this 19 January 2025

Hello Gert,

You are welcome.

Feel free to let us know if you require any assistance.
...................................................
Sincerely,
Ahmad.
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

You must log in or register to leave comments