-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoggle.html
More file actions
33 lines (30 loc) · 779 Bytes
/
toggle.html
File metadata and controls
33 lines (30 loc) · 779 Bytes
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
<div class="scrollable">
<div class="scrollable-content">
<div class="container-fluid section section-break" id="toggleExample">
<p toggleable id="lightbulb" active-class="text-primary" class="text-default">
<i class="fa fa-lightbulb-o"></i>
</p>
<div class="btn-group justified nav-tabs">
<a
toggle="toggle"
target="lightbulb"
active-class="active"
class="btn btn-default" href>
Toggle
</a>
<a
toggle="on"
target="lightbulb"
class="btn btn-default" href>
Turn On
</a>
<a
toggle="off"
target="lightbulb"
class="btn btn-default" href>
Turn Off
</a>
</div>
</div>
</div>
</div>