0
|
1 <!doctype html>
|
|
2 <html lang="en">
|
|
3 <head>
|
|
4 <meta charset="utf-8">
|
|
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
6 <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7 <title>TableSaw Column Toggle Table</title>
|
|
8
|
|
9 <link rel="stylesheet" href="../dist/tablesaw.css">
|
|
10 <link rel="stylesheet" href="demo.css">
|
|
11 <link rel="stylesheet" href="//filamentgroup.github.io/demo-head/demohead.css">
|
|
12 <style>
|
|
13 th,
|
|
14 td {
|
|
15 border: 1px solid #000;
|
|
16 }
|
|
17 </style>
|
|
18
|
|
19 <script src="../dist/tablesaw.js"></script>
|
|
20 <script src="../dist/tablesaw-init.js"></script>
|
|
21 <script src="//filamentgroup.github.io/demo-head/loadfont.js"></script>
|
|
22 </head>
|
|
23 <body>
|
|
24 <div class="demo-header">
|
|
25 <div class="company">
|
|
26 <img src="http://filamentgroup.com/images/fg-logo-positive-sm-crop.png">
|
|
27 </div>
|
|
28 <div class="details">
|
|
29 <h1 class="description-container">Demo of <span class="repo-name">Tablesaw</span>
|
|
30 <span class="description">A group of plugins for responsive tables.</span>
|
|
31 </h1>
|
|
32 <ul class="outbound-links">
|
|
33 <li><a href="https://github.com/filamentgroup/tablesaw">Code</a></li>
|
|
34 <li><a href="https://github.com/filamentgroup/tablesaw/issues">Issues</a></li>
|
|
35 </ul>
|
|
36 </div>
|
|
37 </div>
|
|
38 <div class="nav-container">
|
|
39 <div class="docs-globalnav">
|
|
40 <nav class="docs-nav">
|
|
41 <a href="kitchensink.html" class="current">Kitchen Sink</a>
|
|
42 <a href="modeswitch.html">Mode Switch</a>
|
|
43 <a href="sort.html">Sortable</a>
|
|
44 <a href="stack.html">Stack</a>
|
|
45 <a href="stackonly.html">Stack Only</a>
|
|
46 <a href="swipe.html">Swipe Table</a>
|
|
47 <a href="toggle.html">Toggle</a>
|
|
48 </nav>
|
|
49 </div>
|
|
50 </div>
|
|
51 <div class="docs-main">
|
|
52 <h2>Colspans</h2>
|
|
53
|
|
54
|
|
55 <table class="tablesaw" data-tablesaw-mode="swipe" data-column-hover="sizechart_columnhover" data-tablesaw-minimap>
|
|
56 <thead>
|
|
57 <tr class="sizechart_solosizerow">
|
|
58 <th scope="col" data-tablesaw-priority="persist">Size</th>
|
|
59 <th scope="col" data-tablesaw-priority="1">XS</th>
|
|
60 <th scope="col" data-tablesaw-priority="1">S</th>
|
|
61 <th scope="col" data-tablesaw-priority="1">M</th>
|
|
62 <th scope="col" data-tablesaw-priority="1">L</th>
|
|
63 <th scope="col" data-tablesaw-priority="1">XL</th>
|
|
64 <th scope="col" data-tablesaw-priority="1">XXL</th>
|
|
65 </tr>
|
|
66 </thead>
|
|
67 <tbody>
|
|
68 <tr>
|
|
69 <th scope="row" id="sizechart-mens-neck"><a href="#measuring-neck" data-collapsible-target="#measuring-neck" class="sizechart_type"><span class="a11y-only">How to measure </span>Neck</a></th>
|
|
70 <td>13½-14″</td>
|
|
71 <td>14-14½″</td>
|
|
72 <td>15-15½″</td>
|
|
73 <td>16-16½″</td>
|
|
74 <td>17-17½″</td>
|
|
75 <td>18-18½″</td>
|
|
76 </tr>
|
|
77 <tr>
|
|
78 <th scope="row"><a href="#measuring-chest" data-collapsible-target="#measuring-chest" class="sizechart_type"><span class="a11y-only">How to measure </span>Chest</a></th>
|
|
79 <td>36-38</td>
|
|
80 <td>38-40</td>
|
|
81 <td>40-42</td>
|
|
82 <td>42-44</td>
|
|
83 <td>44-46</td>
|
|
84 <td>46-48</td>
|
|
85 </tr>
|
|
86 <tr>
|
|
87 <th scope="row"><a href="#measuring-sleeve" data-collapsible-target="#measuring-sleeve" class="sizechart_type"><span class="a11y-only">How to measure </span>Sleeve</a></th>
|
|
88 <td>32½″</td>
|
|
89 <td>33½″</td>
|
|
90 <td>34½″</td>
|
|
91 <td>35½″</td>
|
|
92 <td>36½″</td>
|
|
93 <td>37½″</td>
|
|
94 </tr>
|
|
95 <tr>
|
|
96 <th scope="row"><a href="#measuring-waist" data-collapsible-target="#measuring-waist" class="sizechart_type"><span class="a11y-only">How to measure </span>Waist</a></th>
|
|
97 <td>28-30</td>
|
|
98 <td>30-32</td>
|
|
99 <td>32-34</td>
|
|
100 <td>36-38</td>
|
|
101 <td>40-42</td>
|
|
102 <td>42-44</td>
|
|
103 </tr>
|
|
104 </tbody>
|
|
105 </table>
|
|
106 </div>
|
|
107
|
|
108 </body>
|
|
109 </html> |