collapse.html 4.74 KB
Newer Older
1
2
<!DOCTYPE html>
<html>
Bardi Harborow's avatar
Bardi Harborow committed
3
4
5
6
7
8
9
10
11
12
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <link rel="stylesheet" href="../../../dist/css/bootstrap.min.css">
    <title>Collapse</title>
  </head>
  <body>
    <div class="container">
      <h1>Collapse <small>Bootstrap Visual Test</small></h1>
13

Bardi Harborow's avatar
Bardi Harborow committed
14
15
16
17
18
19
20
21
22
      <div id="accordion" role="tablist" aria-multiselectable="true">
        <div class="card">
          <div class="card-header" role="tab" id="headingOne">
            <h5 class="mb-0">
              <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
                Collapsible Group Item #1
              </a>
            </h5>
          </div>
23

Bardi Harborow's avatar
Bardi Harborow committed
24
25
26
27
          <div id="collapseOne" class="collapse active" role="tabpanel" aria-labelledby="headingOne">
            <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>
Johann-S's avatar
Johann-S committed
28
          </div>
Bardi Harborow's avatar
Bardi Harborow committed
29
30
31
32
33
34
35
36
        </div>
        <div class="card">
          <div class="card-header" role="tab" id="headingTwo">
            <h5 class="mb-0">
              <a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
                Collapsible Group Item #2
              </a>
            </h5>
Johann-S's avatar
Johann-S committed
37
          </div>
Bardi Harborow's avatar
Bardi Harborow committed
38
39
40
41
42
43
44
45
46
47
48
49
50
          <div id="collapseTwo" class="collapse" role="tabpanel" aria-labelledby="headingTwo">
            <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>
          </div>
        </div>
        <div class="card">
          <div class="card-header" role="tab" id="headingThree">
            <h5 class="mb-0">
              <a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
                Collapsible Group Item #3
              </a>
            </h5>
Johann-S's avatar
Johann-S committed
51
          </div>
Bardi Harborow's avatar
Bardi Harborow committed
52
53
54
55
56
57
          <div id="collapseThree" class="collapse" role="tabpanel" aria-labelledby="headingThree">
            <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>
          </div>
        </div>
58
59
60
      </div>
    </div>

Bardi Harborow's avatar
Bardi Harborow committed
61
62
63
    <script src="../vendor/jquery.min.js"></script>
    <script src="../../dist/util.js"></script>
    <script src="../../dist/collapse.js"></script>
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
    <script>
      // JavaScript Test
      $(function () {
        testCollapseTransitionError()
      });

      // Should throw an error because carousel is in transition
      function testCollapseTransitionError() {
        var err = false
        $('#collapseOne').on('hidden.bs.collapse', function (e) {
          $(this).off('hidden.bs.collapse')
          if (!err) {
            alert('No error thrown for : testCollapseTransitionError')
          }
        })

        try {
          $('#collapseOne').collapse('hide').collapse('show')
        }
        catch (e) {
          err = true
          console.error(e.message)
        }
      }
    </script>
Bardi Harborow's avatar
Bardi Harborow committed
89
  </body>
90
</html>