Horizontal Scrolling

Description

See how easy the plugin can be used in this demo with default values. Note the default scrolling content is -SuperMarquee By SuperPlug.in Is Super !!!- 😉.

Javascript Example

Below is the equivalent javascript code using the pure vanilla js version of SuperScroll.

                                        
                                            
new SuperMarquee( document.getElementById( 'supermarquee' ) );
                                        
                                    
                                        
                                            
    <div id="supermarquee"></div>
                                            
                                    
                                        
                                            
     #supermarquee {
        color: #8089ff;
        font-size: 48px;
     }
                                            
                                    

jQuery Example

The demo above is constructed with the jQuery version of this library. See the code below to find out more.

                                        
                                            
    $( "#supermarquee" ).supermarquee();
                                            
                                    
                                        
                                            
    <div id="supermarquee"></div>
                                            
                                    
                                        
                                            
     #supermarquee {
        color: #8089ff;
        font-size: 48px;
     }
                                            
                                    

 

BACK