clear
  • Introduction
  • HTML
  • Html Structure
    • Header
    • Left Side Menu
    • Right Side Menu
    • Main Content
      • Buttons
      • Font Icons
      • Progress Bars
      • Maps
      • Lock Screen
  • FAQ's
  • SCSS
  • CSS Files
  • Javascript Files
  • Plugins
  • Start New Page
    • Menu Bar Fold
    • Boxed and Moveable Header
    • Moveable Header
    • Boxed and Fixed Header
    • Fixed Header and Menu
  • Vue Version
    • Basic Installation
      • Clear 1.7 installation
    • Basic Structure
      • Layout structure
      • Leftmenu structure
      • Start New Page
      • Changing layouts
  • Changing Color Scheme
  • Laravel Spark Skin
    • Spark Installation
    • Using .vue files
    • Adding External Plugins
  • Laravel Version
    • Changing skin
    • Changing Layouts
Powered by GitBook
On this page

Was this helpful?

  1. Html Structure
  2. Main Content

Buttons

PreviousMain ContentNextFont Icons

Last updated 5 years ago

Was this helpful?

There are twelve variants of buttons based on the colors used in this template with an option to change the color of the button just by replacingbtn-primarywithbtn-defaultbtn-infobtn-successbtn-warningbtn-dangerin the code below.

1) Radiused Buttons:

we can change effect of any button by replacinghvr-buzzwith the effect we would like hvr-hang hvr-sink hvr-popand other in the code below.

It has the following Structure:

<button class="button button-rounded button-flat hvr-buzz">Button</button>

2) Rounded Buttons:

we can change effect of any button by replacinghvr-shrinkwith the effect we effect we want likehvr-pulse hvr-grow hvr-pushand other in the code below.

It has the following Structure:

<button class="button button-pill button-primary-flat hvr-shrink">shrink</button>

3) Rectangle Buttons:

It has the following Structure:

<button class="button button-primary-flat hvr-wobble-bottom">Button</button>

4) Circle Buttons:

It has the following Structure:

<button class="button button-circle button-primary-flat hvr-skew">Button</button>

5) Shadow and Glow Transitions Buttons:

It has the following Structure:

<button class="button button-glow button-rounded button-flat hvr-float-shadow">Button</button>

6) Quick Shortcuts:

It has the following Structure:

<div class="btn btn-danger btn-sm btn-responsive"  role="button">
     <span class="glyphicon glyphicon-list-alt">Apps</span>
</div>

7) 3-D Buttons:

It has the following Structure:

<button class="button button-3d">Button</button>

8) Spinner Buttons:

It has the following Structure:

<button class="ladda-button btn btn-primary button_normal"  data-style="expand-left">
     <span class="ladda-label">Expand Left</span>
     <span class="ladda-spinner"></span>
</button>

9) Icon Button & Dropdown:

It has the following Structure:

<button type="button" class="btn btn-icon btn-default m-r-50">
     <i class="icon fa fa-fw fa-map-marker" aria-hidden="true"></i>
</button>

10) Button Animation:

It has the following Structure:

<button type="button" class="btn btn-animate btn-animate-side btn-success m-r-50">
    <span>
        <i class="icon fa fa-fw fa-map-marker" aria-hidden="true"></i>Side Animation
    </span>
</button>

11) Group Buttons:

It has the following Structure:

<div class="ui-group-buttons">
   <a href="#" class="btn btn-success" role="button">
      <span class="glyphicon glyphicon-thumbs-up">........</span>
   </a>
   ...
   ...
</div>

12) Buttons With Labels:

It has the following Structure:

<button type="button" class="btn btn-labeled btn-success">
    <span class="btn-label">
        <i class="glyphicon glyphicon-ok" aria-hidden="true"></i>Success
    </span>
</button>