Latest web development tutorials

ionic Button

Button is an integral part of the mobile app, app different styles, different buttons required style.

By default, the button display styleas: display: inline-block.

<button class="button">
  Default
</button>

<button class="button button-light">
  button-light
</button>

<button class="button button-stable">
  button-stable
</button>

<button class="button button-positive">
  button-positive
</button>

<button class="button button-calm">
  button-calm
</button>

<button class="button button-balanced">
  button-balanced
</button>

<button class="button button-energized">
  button-energized
</button>

<button class="button button-assertive">
  button-assertive
</button>

<button class="button button-royal">
  button-royal
</button>

<button class="button button-dark">
  button-dark
</button>

try it"

button-block style button isdisplayed: display: block, it will completely fill the width of the parent element, contained within the margin properties padding.

<button class="button button-block button-positive">
  Block Button
</button>

try it"

Use button-full type, you can make the button to display full width, and does not include padding padding.

<button class="button button-full button-positive">
  Full Width Block Button
</button>

try it"


Different sizes of buttons

button-large to large buttons, button-small to small buttons.

<button class="button button-small button-assertive">
  Small Button
</button>
<button class="button button-large button-positive">
  Large Button
</button>

try it"


No background button

button-outline set transparent background.

<button class="button button-outline button-positive">
  Outlined Button
</button>

try it"


No Background and Borders button

button-clear button to set a transparent background and no border.

<button class="button button-clear button-positive">
  Clear Button
</button>

try it"


Icon button

We can add an icon on the button.

<button class="button">
  <i class="icon ion-loading-c"></i> Loading...
</button>

<button class="button icon-left ion-home">Home</button>

<button class="button icon-left ion-star button-positive">Favorites</button>

<a class="button icon-right ion-chevron-right button-calm">Learn More</a>

<a class="button icon-left ion-chevron-left button-clear button-dark">Back</a>

<button class="button icon ion-gear-a"></button>

<a class="button button-icon icon ion-settings"></a>

<a class="button button-outline icon-right ion-navicon button-balanced">Reorder</a>

try it"


Head / bottom of the Add button

Header / footer can add buttons, button style according to the head / bottom is set, so you do not need to add extra style to the button.

<div class="bar bar-header">
  <button class="button icon ion-navicon"></button>
  <h1 class="title">Header Buttons</h1>
  <button class="button">Edit</button>
</div>

try it"

button-clear class can not set the background and border header / footer button.

<div class="bar bar-header">
  <button class="button button-icon icon ion-navicon"></button>
  <div class="h1 title">Header Buttons</div>
  <button class="button button-clear button-positive">Edit</button>
</div>

try it"


Button Bar

We can use the button-bar to set the class button bar. The following example, we add a button bar in the header and content.

<div class="button-bar">
  <a class="button">First</a>
  <a class="button">Second</a>
  <a class="button">Third</a>
</div>

try it"