Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/ | 23-Nov-2023 | - | 34 | 14 | ||
demo/ | 23-Nov-2023 | - | 339 | 255 | ||
test/ | 23-Nov-2023 | - | 674 | 498 | ||
.bower.json | D | 23-Nov-2023 | 1.9 KiB | 54 | 54 | |
.gitignore | D | 23-Nov-2023 | 18 | 2 | 1 | |
.travis.yml | D | 23-Nov-2023 | 776 | 24 | 23 | |
CONTRIBUTING.md | D | 23-Nov-2023 | 3.4 KiB | 78 | 39 | |
README.md | D | 23-Nov-2023 | 1.4 KiB | 47 | 42 | |
bower.json | D | 23-Nov-2023 | 1.6 KiB | 45 | 44 | |
hero.svg | D | 23-Nov-2023 | 989 | 24 | 22 | |
index.html | D | 23-Nov-2023 | 953 | 26 | 12 | |
paper-tab.html | D | 23-Nov-2023 | 4.2 KiB | 176 | 110 | |
paper-tabs-icons.html | D | 23-Nov-2023 | 845 | 19 | 7 | |
paper-tabs.html | D | 23-Nov-2023 | 18.4 KiB | 662 | 480 |
README.md
1[](https://travis-ci.org/PolymerElements/paper-tabs) 2[](https://beta.webcomponents.org/element/PolymerElements/paper-tabs) 3 4##<paper-tabs> 5 6Material design: [Tabs](https://www.google.com/design/spec/components/tabs.html) 7 8`paper-tabs` makes it easy to explore and switch between different views or functional aspects of 9an app, or to browse categorized data sets. 10 11<!--- 12``` 13<custom-element-demo> 14 <template> 15 <script src="../webcomponentsjs/webcomponents-lite.js"></script> 16 <link rel="import" href="paper-tabs.html"> 17 <style> 18 body { 19 margin: 0; 20 display: flex; 21 align-items: flex-end; 22 height: 80px; 23 background: #009688; 24 color: white; 25 } 26 paper-tabs { 27 font-family: 'Roboto', 'Noto', sans-serif; 28 -webkit-font-smoothing: antialiased; 29 width: 100%; 30 text-transform: uppercase; 31 margin-bottom: 1px; 32 } 33 </style> 34 <next-code-block></next-code-block> 35 </template> 36</custom-element-demo> 37``` 38--> 39```html 40<paper-tabs selected="0" scrollable> 41 <paper-tab>The first tab</paper-tab> 42 <paper-tab>Tab two</paper-tab> 43 <paper-tab>The third tab</paper-tab> 44 <paper-tab>Fourth tab</paper-tab> 45</paper-tabs> 46``` 47