"Single Button Toggle"
Bootstrap 3.3.0 Snippet by tonetlds

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<div class="container">
<h1 class="text-center">Toggle!</h1>
</div>
<div class="container">
<div class="well well-sm text-center">
<div class="" data-toggle="buttons">
<label class="btn btn-lg btn-success active">
<input type="radio" name="options" id="option1" autocomplete="off" checked>
<i class="fa fa-check"></i> Pago
</label>
<label class="btn btn-lg btn-danger">
<input type="radio" name="options" id="option2" autocomplete="off">
<i class="fa fa-warning"></i> Não pago
</label>
</div>
<br />
<div class="" data-toggle="buttons">
<label class="btn btn-lg btn-default active">
<input type="radio" name="options" id="option1" autocomplete="off" checked>
<i class="fa fa-thumbs-o-up"></i>
</label>
<label class="btn btn-lg btn-default">
<input type="radio" name="options" id="option2" autocomplete="off">
<i class="fa fa-thumbs-o-down"></i>
</label>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.btn.active {
display: none;
}
.btn span:nth-of-type(1) {
display: none;
}
.btn span:last-child {
display: block;
}
.btn.active span:nth-of-type(1) {
display: block;
}
.btn.active span:last-child {
display: none;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

Creo que puedes cambiar esta etiqueta, dado que impactas con el mismo framework

.btn.active {
display: none;
}

Oxigeno () - 9 years ago - Reply 0