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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/examples/stocks/stock.sky ('k') | sky/framework/sky-drawer.sky » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/framework/material-element.sky
diff --git a/sky/framework/material-element.sky b/sky/framework/material-element.sky
new file mode 100644
index 0000000000000000000000000000000000000000..046019219b7e40d797713cc03de6734fe4415ae6
--- /dev/null
+++ b/sky/framework/material-element.sky
@@ -0,0 +1,30 @@
+<!--
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+-->
+<import src="sky-element.sky" />
+<import src="sky-ink-splash.sky" />
+<script>
+import "dart:sky";
+
+HTMLStyleElement _kStyleElement;
+
+class MaterialElement extends SkyElement {
+ MaterialElement() {
+ addEventListener('pointerdown', _handlePointerDown);
+ }
+
+ void _handlePointerDown(PointerEvent event) {
+ // We set the transform here to become a container for absolutely positioned
+ // elements. We should either have a better way of becoming such a container
+ // or we should make every RenderBlock be such a container.
+ style['transform'] = 'translateX(0)';
+
+ ClientRect rect = getBoundingClientRect();
+ SkyInkSplash splash = new SkyInkSplash();
+ shadowRoot.prependChild(splash);
+ splash.start(event.x, event.y, rect);
+ }
+}
+</script>
« 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