UNPKG

infinite-marquee

Version:

Configurable package to create an infinite marquee effect. Animated with JS or CSS.

25 lines (23 loc) 733 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Infinite Scroll</title> <link rel="stylesheet" href="./assets/css/infinite-marquee.css"> <script src="./assets/js/demo.js" defer></script> </head> <body> <div class="marquee"> <div class="marquee-inner"> <div class="marquee-content" style="display: flex; padding-right: 50px;"> <p style="padding-right: 50px;">DEMO ONE</p> <p style="padding-right: 50px;">DEMO TWO</p> <p style="padding-right: 50px;">DEMO THREE</p> <p>DEMO FOUR</p> </div> </div> </div> </body> </html>