Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: sky/framework/material-element.sky

Issue 954023002: Implement quantum ink splashes (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: nits Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/examples/stocks/stock.sky ('k') | sky/framework/sky-drawer.sky » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!--
2 // Copyright 2015 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 -->
6 <import src="sky-element.sky" />
7 <import src="sky-ink-splash.sky" />
8 <script>
9 import "dart:sky";
10
11 HTMLStyleElement _kStyleElement;
12
13 class MaterialElement extends SkyElement {
14 MaterialElement() {
15 addEventListener('pointerdown', _handlePointerDown);
16 }
17
18 void _handlePointerDown(PointerEvent event) {
19 // We set the transform here to become a container for absolutely positioned
20 // elements. We should either have a better way of becoming such a container
21 // or we should make every RenderBlock be such a container.
22 style['transform'] = 'translateX(0)';
23
24 ClientRect rect = getBoundingClientRect();
25 SkyInkSplash splash = new SkyInkSplash();
26 shadowRoot.prependChild(splash);
27 splash.start(event.x, event.y, rect);
28 }
29 }
30 </script>
OLDNEW
« no previous file with comments | « sky/examples/stocks/stock.sky ('k') | sky/framework/sky-drawer.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698