-3
A
回答
0
如果你真的需要它是準確的,你需要繪製它的客戶端,最有可能的。您的PHP腳本可以返回描述進度條位置的JSON對象,然後您的腳本將繪製它。下面是從SO另一個問題是列出了一些JavaScript的圖形選項:Which JavaScript graphics library has the best performance?
0
PHP
$purchased_num = 13; // items purchased until now (example)
$max_width = 400; // the width of the bar
$max_pur = 50; // the maximum number of items
$one_pur_width = round($max_width/$max_pur);
$width = $one_pur_width * $purchased_num;
// print the div with this width
// and style the bar with css
// ...
1
你應該使用jQuery經常重新加載小部分。
<div id="progBar">
</div>
<script type=text/javascript>
function refreshProgress() {
$.get('/folder/progbar.php', function (data) {
$('#progBar').html(data);
}
setTimeout('refreshProgress();',10000);
}
$(function() { refreshProgress(); });
</script>
當加載頁面時會加載progbar.php(這將基於在銷售時的當前進度條)入格,並刷新每10秒。
相關問題
- 1. AppleScriptObjC:進度條不增加
- 2. 使用jQuery增加進度條
- 3. 進度條增量
- 4. 增量加載進度環
- 5. 進度條增量/減量
- 6. ValueError:索引必須單調增加或減少:增加毫秒
- 7. 如何增加UIView的高度,如果兒童的數量增加ios
- 8. 每秒增加進度條 - 錯誤
- 9. 每隔格必須增加其櫃檯
- 10. 增加值數組,如果條件fullfilled
- 11. 增加數量
- 12. PHP隨着記錄數量的增加動態增加#行
- 13. Textarea必須重疊div而不增加div高度
- 14. 必須在每個紀元後增加精度嗎?
- 15. 用str_pad(PHP)增加數字
- 16. PHP:變量不增加
- 17. 進度條 - 按增量暫停0.5秒?
- 18. css徑向進度條增量爲1%
- 19. 增加速度
- 20. 增加高度
- 21. 速度增加
- 22. jQuery增量增加css值
- 23. 如何增加框架的寬度時的球的數量增加
- 24. MPI - 不增加進程量的加速
- 25. 如何增加apache進程或併發php文件的數量?
- 26. 使UIStepper的增量增加5
- 27. 增加DIV作爲其含量增加
- 28. 增加在PHP
- 29. PHP增加值
- 30. 增加變量
你確定PHP是正確的工具嗎? – 2010-07-08 13:10:01