aboutsummaryrefslogtreecommitdiff
path: root/catapult/third_party/polymer/components/paper-ripple/README.md
blob: 6d3fa5a4d8cfee7ea51c941fdbaf74561904dfad (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
[![Build status](https://travis-ci.org/PolymerElements/paper-ripple.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-ripple)

##<paper-ripple>

Material design: [Surface reaction](https://www.google.com/design/spec/animation/responsive-interaction.html#responsive-interaction-surface-reaction)

`paper-ripple` provides a visual effect that other paper elements can
use to simulate a rippling effect emanating from the point of contact.  The
effect can be visualized as a concentric circle with motion.

<!---
```
<custom-element-demo>
  <template>
    <script src="../webcomponentsjs/webcomponents-lite.js"></script>
    <link rel="import" href="paper-ripple.html">
    <style is="custom-style">
      div {
        height: 100px;
        width: 100%;
        box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24);
      }
      
      paper-ripple {
        color: #4285f4;
      }
    </style>
    <next-code-block></next-code-block>
  </template>
</custom-element-demo>
```
-->
```html
<div style="position: relative">
  <paper-ripple></paper-ripple>
</div
```