$Date: 2004/04/18 13:25:43 $
This example will run a vertical ProgressBar, beginning at value 85, and increased through 100 with +1 step.
Percent text info is right aligned on 50 pixels width area
at right side of the progress bar (default).
Cells have default size and colors.
[Top]
Build the progress bar
require_once 'HTML/Progress.php'; $bar = new HTML_Progress(HTML_PROGRESS_BAR_VERTICAL); $bar->setAnimSpeed(100); $bar->setValue(85);
Loop to run the progress
do { $bar->display(); if ($bar->getPercentComplete() == 1) { break; // the progress bar has reached 100% } // your user-process should be put HERE ! $bar->incValue(); } while(1);
[Top]
[Top]
[Top]
Run the script below :
<?php require_once 'HTML/Progress.php'; $bar = new HTML_Progress(HTML_PROGRESS_BAR_VERTICAL); $bar->setAnimSpeed(100); $bar->setValue(85); ?> <html> <head> <title>Basic Vertical ProgressBar example</title> <style type="text/css"> <!-- <?php echo $bar->getStyle(); ?> // --> </style> <script type="text/javascript"> <!-- <?php echo $bar->getScript(); ?> //--> </script> </head> <body> <?php echo $bar->toHtml(); do { $bar->display(); if ($bar->getPercentComplete() == 1) { break; // the progress bar has reached 100% } $bar->incValue(); } while(1); ?> </body> </html>
[Top]