Text scroller

This is class designed for scrolling text within div.

define.php - Define constants
scroller.class.php - main class for text scrolling
scroller.lib.php - subsidiary lib

Example of using:

<?php

require_once "scroller.class.php";
require_once 
"scroller.lib.php";

$scroller = new Scroller();

$content = array (
                    array(
"id" => 1"title" => "First title",  "description" => "First description"),
                    array(
"id" => 2"title" => "Second title""description" => "Second description"),
                    array(
"id" => 3"title" => "Third title",  "description" => "Third description")

);

$content format_content($content"index.php");
$scroller->setContent($content);

echo(
$scroller->showScroller());

?>

  • Top