Bootstrap JS-knop


JS-knop (knop.js)

Gebruik deze plug-in als u meer controle wilt hebben over uw knoppen.

Voor een tutorial over Buttons, lees onze Bootstrap Buttons Tutorial .


De Button Plugin-klassen

De klassen hieronder kunnen worden gebruikt om elk element <a>, <button> of <input> op te maken:

Class Description Example
.btn Adds basic styling to any button
.btn-default Indicates a default/standard button
.btn-primary Provides extra visual weight and identifies the primary action in a set of buttons
.btn-success Indicates a successful or positive action
.btn-info Contextual button for informational alert messages
.btn-warning Indicates caution should be taken with this action
.btn-danger Indicates a dangerous or potentially negative action
.btn-link Makes a button look like a link (will still have button behavior)
.btn-lg Makes a large button
.btn-sm Makes a small button
.btn-xs Makes an extra small button
.btn-block Makes a block-level button (spans the full width of the parent element)
.active Makes the button appear pressed
.disabled Makes the button disabled

Via JavaScript

Handmatig inschakelen met:

$('.btn').button();


Knopopties

None

Knopmethoden

De volgende tabel bevat alle beschikbare knopmethoden.

Opmerking: voor deze plug-in kunnen methoden ook worden doorgegeven via gegevensattributen; voeg de methodenaam toe aan data-, zoals in data-toggle of data-loading.

Method Description Try it
.button("toggle") Makes the button look pressed
.button("loading") Disables the button and changes the button text to "loading..."
.button("reset") Changes the button text to original text (if changed)
.button("string") Specifies a new button text

Meer voorbeelden

CSS gebruiken om knoppen aan te passen

Hoe de afgeronde randen te verwijderen:

Voorbeeld

.btn-default {
  border-radius: 0;
}

Een specifieke kleur toevoegen:

Voorbeeld

.btn-default {
  background: #000;
  color: #fff;
}

.btn-default:hover {
  background: #fff;
  color: #000;
}

Hoe schaduwen toe te voegen:

Voorbeeld

.btn-default {
  box-shadow: 1px 2px 5px #000000;
}