PHP设置进度条的方法

 2025-01-16  阅读 210  评论 8  点赞 321

摘要:本文实例讲述了php设置进度条的方法。分享给大家供大家参考。具体如下: done. 希望本文所述对大家的php程序设计有所帮助。

本文实例讲述了php设置进度条的方法。分享给大家供大家参考。具体如下:

PHP设置进度条的方法

<html>
<head>
<style type="text/css"><!--
div {
 margin: 1px;
 height: 20px;
 padding: 1px;
 border: 1px solid #000;
 width: 275px;
 background: #fff;
 color: #000;
 float: left;
 clear: right;
 top: 38px;
 z-index: 9
}
.percents {
 background: #fff;
 border: 1px solid #ccc;
 margin: 1px;
 height: 20px;
 position:absolute;
 width:275px;
 z-index:10;
 left: 10px;
 top: 38px;
 text-align: center;
}
.blocks {
 background: #eee;
 border: 1px solid #ccc;
 margin: 1px;
 height: 20px;
 width: 10px;
 position: absolute;
 z-index:11;
 left: 12px;
 top: 38px;
 filter: alpha(opacity=50);
 -moz-opacity: 0.5;
 opacity: 0.5;
 -khtml-opacity: .5
}
-->
</style>
</head>
<body>
<?php
if (ob_get_level() == 0) {
  ob_start();
}
echo str_pad('loading... ',4096)."<br />\n";
for ($i = 0; $i < 25; $i++) {
  $d = $d + 11;
  $m=$d+10;
  //this div will show loading percents
  echo '<div class="percents">' . $i*4 . '% complete</div>';
  //this div will show progress bar
  echo '<div class="blocks" style="left: '.$d.'px"> </div>';
  flush();
  ob_flush();
  sleep(1);
}
ob_end_flush();
?>
<div class="percents" style="z-index:12">done.</div>
</body>
</html>

希望本文所述对大家的php程序设计有所帮助。


标签:phpphp教程

评论列表:

  •   henbucuo
     发布于 2天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0284秒, 内存占用1.94 MB, 访问数据库31次

冀ICP备19034377号