Spinners

Indicate the loading state of a component or page with Bootstrap spinners, built entirely with HTML, CSS, and no JavaScript.

About

Bootstrap “spinners” can be used to show the loading state in your projects. They’re built only with HTML and CSS, meaning you don’t need any JavaScript to create them. You will, however, need some custom JavaScript to toggle their visibility. Their appearance, alignment, and sizing can be easily customized with our amazing utility classes.

Border spinner

Use the border spinners for a lightweight loading indicator.

Loading...
@Html.LLG().Spinner()

Colors

The border spinner uses currentColor for its border-color, meaning you can customize the color with text color utilities. You can use any of our text color utilities on the standard spinner.

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
@Html.LLG().Spinner().Color(BootstrapColor.Primary)
@Html.LLG().Spinner().Color(BootstrapColor.Danger)
@Html.LLG().Spinner().Color(BootstrapColor.Dark)
@Html.LLG().Spinner().Color(BootstrapColor.Info) 
@Html.LLG().Spinner().Color(BootstrapColor.Light) 
@Html.LLG().Spinner().Color(BootstrapColor.Secondary) 
@Html.LLG().Spinner().Color(BootstrapColor.Success) 
@Html.LLG().Spinner().Color(BootstrapColor.Warning) 

Growing spinner

If you don’t fancy a border spinner, switch to the grow spinner. While it doesn’t technically spin, it does repeatedly grow!

Loading...
@Html.LLG().Spinner().Growing()

Once again, this spinner is built with currentColor, so you can easily change its appearance with text color utilities. Here it is in blue, along with the supported variants.

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
@Html.LLG().Spinner().Color(BootstrapColor.Primary).Growing()
@Html.LLG().Spinner().Color(BootstrapColor.Danger).Growing()
@Html.LLG().Spinner().Color(BootstrapColor.Dark).Growing()
@Html.LLG().Spinner().Color(BootstrapColor.Info).Growing() 
@Html.LLG().Spinner().Color(BootstrapColor.Light).Growing() 
@Html.LLG().Spinner().Color(BootstrapColor.Secondary).Growing() 
@Html.LLG().Spinner().Color(BootstrapColor.Success).Growing() 
@Html.LLG().Spinner().Color(BootstrapColor.Warning).Growing() 

Size

Add .spinner-border-sm and .spinner-grow-sm to make a smaller spinner that can quickly be used within other components.

Loading...
Loading...
@Html.LLG().Spinner().Size(SpinnerSize.Small)
@Html.LLG().Spinner().Size(SpinnerSize.Small).Growing()

Or, use custom CSS or inline styles to change the dimensions as needed.

Loading...
Loading...
@Html.LLG().Spinner()
    .AppendStyle("width", "3rem")
    .AppendStyle("height", "3rem")
@Html.LLG().Spinner().Growing()
    .AppendStyle("width", "3rem")
    .AppendStyle("height", "3rem")

Buttons

Use spinners within buttons to indicate an action is currently processing or taking place. You may also swap the text out of the spinner element and utilize button text as needed.

<button class="btn btn-primary" type="button" disabled>
    @Html.LLG().Spinner().Size(SpinnerSize.Small)
</button>

<button class="btn btn-primary" type="button" disabled>
    @Html.LLG().Spinner().Size(SpinnerSize.Small) Loading...
</button>

Methods

Alerts are available for any length of text, as well as an optional dismiss button

Method Description

.Method(bool value)

Comming soon.