Skip to content

A customizable, glass-styled vintage terminal component for web applications.

Notifications You must be signed in to change notification settings

jnuvola/GlassTerminalJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

GlassTerminalJS

A customizable, glass-styled vintage terminal component for web applications.

Check out the live demo to see GlassTerminalJS in action.

Configuration Options

You can customize the terminal by passing options to the constructor:

const terminal = new GlassTerminal({
  containerId: 'terminal-container',  // ID of the container element
  width: 500,                         // Width in pixels
  height: 500,                        // Height in pixels
  fontSize: 11,                       // Font size in pixels
  terminalColor: '#33ff33',           // Terminal text color
  autoRestart: true,                  // Whether to restart after completion
  lines: [                            // Content to display
    '> Hello, world!',
    '> Running system check...',
    '> All systems operational.'
  ]
});

API Methods

// Mount the component to the DOM
terminal.mount();

// Start the typing animation
terminal.start();

// Pause the animation
terminal.stop();

// Clear the terminal and reset to initial state
terminal.reset();

// Change the content displayed
terminal.updateLines([
  '> New content line 1',
  '> New content line 2'
]);

About

A customizable, glass-styled vintage terminal component for web applications.

Topics

Resources

Stars

Watchers

Forks