aboutsummaryrefslogtreecommitdiff
path: root/catapult/third_party/polymer/components/paper-tabs/README.md
blob: 050979f8de36ca17ef56ff659b82586d63e2a939 (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[![Build status](https://travis-ci.org/PolymerElements/paper-tabs.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-tabs)
[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://beta.webcomponents.org/element/PolymerElements/paper-tabs)

##<paper-tabs>

Material design: [Tabs](https://www.google.com/design/spec/components/tabs.html)

`paper-tabs` makes it easy to explore and switch between different views or functional aspects of
an app, or to browse categorized data sets.

<!---
```
<custom-element-demo>
  <template>
    <script src="../webcomponentsjs/webcomponents-lite.js"></script>
    <link rel="import" href="paper-tabs.html">
    <style>
      body {
        margin: 0;
        display: flex;
        align-items: flex-end;
        height: 80px;
        background: #009688;
        color: white;
      }
      paper-tabs {
        font-family: 'Roboto', 'Noto', sans-serif;
        -webkit-font-smoothing: antialiased;
        width: 100%;
        text-transform: uppercase;
        margin-bottom: 1px;
      }
    </style>
    <next-code-block></next-code-block>
  </template>
</custom-element-demo>
```
-->
```html
<paper-tabs selected="0" scrollable>
  <paper-tab>The first tab</paper-tab>
  <paper-tab>Tab two</paper-tab>
  <paper-tab>The third tab</paper-tab>
  <paper-tab>Fourth tab</paper-tab>
</paper-tabs>
```