File Size: 174KB
Total Views: 16
Date Created:
Last Modified Date:
Official Website: Go to website
License: NOASSERTION
SuperMarquee is a JavaScript scroller plugin that creates various types of scroller animations for the web component and the text. It is super flexible and fully responsive supported on all major browsers and devices.
Features:
- Fully responsive, fit all the resolutions properly.
- Easy to implement and customization with the help of CSS.
- RTL supported.
- Works on every modern device and browser.
- Supports both Horizontal & vertical scroll.
Installation
npm install sp-supermarquee
How to use it:
1. Include the Javascript SuperMarquee.min.js
at the bottom of the web page.
<script src="js/SuperMarquee.min.js"></script>
2. Add the basic HTML to the page.
<div id="supermarquee"></div>
3. Initialize the plugin and we’re ready to go.
const myScroller1 = new SuperMarquee(
document.getElementById( "supermarquee" ),
{
"content" : "Text To Scroll...",
}
);