jQuery Plugin For Creating A Simple Teleprompter - Teleprompter

File Size: 11.3 KB
Views Total: 2624
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
jQuery Plugin For Creating A Simple Teleprompter - Teleprompter

Teleprompter is a simple jQuery plugin that allows you to automatically scroll through lines of text like the teleprompter (auto cue) or the movie end credits.

See also:

How to use it:

1. Include jQuery library and the jQuery teleprompter plugin at the end of the document.

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="jquery.teleprompter.js"></script>

2. Wrap the text into a container as follows.

<div class="teleprompter" id="demo">

Your text goes here.

</div>

3. Call the plugin to enable the simple teleprompter.

$(document).ready(function () {
$("#demo").teleprompter();
});

4. Style the teleprompter whatever you like in your CSS.

.teleprompter {
  ...
}

This awesome jQuery plugin is developed by ludo. For more Advanced Usages, please check the demo page or visit the official website.