$Date: 2004/04/18 13:25:43 $
IntroductionThis example will run a vertical ProgressBar, with limits (min = 0, max = 10), beginning at 0 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]
PHP scriptBuild the progress bar
require_once 'HTML/Progress.php'; $bar = new HTML_Progress(HTML_PROGRESS_BAR_VERTICAL, 0, 10); $bar->setAnimSpeed(100);
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]
Render options [Top]
Output
[Top]
Play full exampleRun the script below :
<?php
require_once 'HTML/Progress.php';
$bar = new HTML_Progress(HTML_PROGRESS_BAR_VERTICAL, 0, 10);
$bar->setAnimSpeed(100);
?>
<html>
<head>
<title>Vertical limit 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]