darkknight13/php-bootstrap

该软件包最新版本(dev-master)没有提供许可证信息。

这是一个用于生成 Bootstrap HTML 的 PHP 库

dev-master 2016-11-16 05:46 UTC

This package is not auto-updated.

Last update: 2024-09-18 20:14:42 UTC


README

版本 0.1.0 测试版

Build Status Coverage Status

这是一个用于生成 Bootstrap HTML 的 PHP 库

进度条

Bootstrap_ProgressBar::initiate('main_progress_bar') //need to initialize using id of the progressbar
      ->add_bar('60') // adding a progress bar with percentage 60
      ->type('default') // progress bar style types, supports all bootstrap styles
      ->showtext() //showing the text in bar
      ->striped() // striped bar
      ->state('active') // animate the striped bar
      ->generate(); // generate the html

以上代码将生成类似以下的进度条 - Alt Text