collapse.html 3.51 KB
Newer Older
1
2
3
<!DOCTYPE html>
<html>
<head>
4
5
6
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
7
  <title>Collapse</title>
8
  <link rel="stylesheet" href="../../../dist/css/bootstrap.min.css">
9
10
11
12
13
</head>
<body>

<div class="container">

14
  <h1>Collapse <small>Bootstrap Visual Test</small></h1>
15

Johann-S's avatar
Johann-S committed
16
17
18
  <div id="accordion">
    <div class="card">
      <div class="card-header">
vsn4ik's avatar
vsn4ik committed
19
        <h5 class="mb-0">
20
          <a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
21
22
            Collapsible Group Item #1
          </a>
Johann-S's avatar
Johann-S committed
23
        </h5>
24
      </div>
25
      <div id="collapseOne" class="collapse active">
Johann-S's avatar
Johann-S committed
26
27
28
          <div class="card-block">
            Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
          </div>
29
30
      </div>
    </div>
Johann-S's avatar
Johann-S committed
31
32
    <div class="card">
      <div class="card-header">
vsn4ik's avatar
vsn4ik committed
33
        <h5 class="mb-0">
34
          <a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
35
36
            Collapsible Group Item #2
          </a>
Johann-S's avatar
Johann-S committed
37
        </h5>
38
      </div>
Johann-S's avatar
Johann-S committed
39
40
41
42
      <div id="collapseTwo" class="collapse">
          <div class="card-block">
            Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
          </div>
43
44
      </div>
    </div>
Johann-S's avatar
Johann-S committed
45
46
    <div class="card">
      <div class="card-header">
vsn4ik's avatar
vsn4ik committed
47
        <h5 class="mb-0">
48
          <a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseThree">
49
50
            Collapsible Group Item #3
          </a>
Johann-S's avatar
Johann-S committed
51
        </h5>
52
      </div>
Johann-S's avatar
Johann-S committed
53
54
55
56
      <div id="collapseThree" class="collapse">
          <div class="card-block">
            Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
          </div>
57
58
59
60
61
62
63
64
      </div>
    </div>
  </div>

</div>

<!-- JavaScript Includes -->
<script src="../vendor/jquery.min.js"></script>
fat's avatar
fat committed
65
66
<script src="../../dist/util.js"></script>
<script src="../../dist/collapse.js"></script>
67
68
69

</body>
</html>