源代码:
提交运行 »
<!DOCTYPE html> <html> <head> <title>Foundation 实例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://www.fmpq.com/jscss/bootstrap/foundation.min.css"> <script src="http://www.fmpq.com/jscss/bootstrap/jquery.min.js"></script> <script src="http://www.fmpq.com/jscss/bootstrap/foundation.min.js"></script> <script src="http://www.fmpq.com/jscss/bootstrap/modernizr.js"></script> <style> .percentage { position: absolute; top: 50%; left: 50%; color: white; transform: translate(-50%, -50%); font-size: 12px; } </style> </head> <body> <div style="padding:20px;"> <h2>进度条标签</h2> <div class="progress"> <span class="meter" style="position:relative;width:75%"> <span class="percentage">75%</span> </span> </div> <div class="progress success"> <span class="meter" style="position:relative;width:50%"> <span class="percentage">50%</span> </span> </div> <div class="progress alert"> <span class="meter" style="position:relative;width:25%"> <span class="percentage">25%</span> </span> </div> </div> </body> </html>
测试结果: