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

Unified Diff: third_party/polymer/components/paper-shadow/demo.html

Issue 592603004: Revert "Polymer elements added to third_party/polymer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: third_party/polymer/components/paper-shadow/demo.html
diff --git a/third_party/polymer/components/paper-shadow/demo.html b/third_party/polymer/components/paper-shadow/demo.html
deleted file mode 100644
index 1718ba39ef4d6b062e97c9a23732329141144374..0000000000000000000000000000000000000000
--- a/third_party/polymer/components/paper-shadow/demo.html
+++ /dev/null
@@ -1,249 +0,0 @@
-<!doctype html>
-<!--
-Copyright 2013 The Polymer Authors. All rights reserved.
-Use of this source code is governed by a BSD-style
-license that can be found in the LICENSE file.
--->
-<html>
-<head>
- <title>paper-shadow</title>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
- <script src="../platform/platform.js"></script>
- <link href="paper-shadow.html" rel="import">
- <style>
- body {
- font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
- transform: translateZ(0);
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- padding: 16px;
- user-select: none;
- -webkit-user-select: none;
- }
-
- section {
- display: flex;
- display: -webkit-flex;
- width: 80%;
- margin: 16px;
- }
-
- aside {
- flex: 1 1 auto;
- -webkit-flex: 1 1 auto;
- padding: 48px 16px;
- user-select: text;
- -webkit-user-select: text;
- }
-
- .card {
- background: white;
- width: 300px;
- height: 300px;
- position: relative;
- margin: 16px;
- border-radius: 2px;
- }
-
- .card-inner {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- border-radius: 2px;
- }
-
- </style>
-</head>
-<body unresolved>
-
- <paper-shadow></paper-shadow>
-
- <section>
- <div>
- <div class="card">
- </div>
- </div>
- <aside>
- z-depth = 0
- </aside>
- </section>
-
- <section>
- <!-- Example of using paper-shadow to add a shadow to an element -->
- <div>
- <div class="card">
- <paper-shadow z="1"></paper-shadow>
- </div>
- </div>
- <aside>
- z-depth = 1
- </aside>
- </section>
-
- <section>
- <!-- Example of using paper-shadow as part of a Polymer element -->
- <polymer-element name="x-card" attributes="z">
- <template>
- <style>
- :host {
- display: block;
- }
- </style>
- <paper-shadow z="{{z}}"></paper-shadow>
- </template>
- <script>
- Polymer('x-card', {
- publish: {
- z: {value: 1, reflect: true}
- }
- });
- </script>
- </polymer-element>
- <div>
- <x-card class="card" z="2"></x-card>
- </div>
- <aside>
- z-depth = 2
- </aside>
- </section>
-
- <section>
- <!-- Example of using paper-shadow by adding a class directly -->
- <div>
- <div class="card paper-shadow-top-z-3">
- <div class="card-inner paper-shadow-bottom-z-3">
- </div>
- </div>
- </div>
- <aside>
- z-depth = 3
- </aside>
- </section>
-
- <section>
- <div>
- <div class="card paper-shadow-top-z-4">
- <div class="card-inner paper-shadow-bottom-z-4">
- </div>
- </div>
- </div>
- <aside>
- z-depth = 4
- </aside>
- </section>
-
- <section>
- <div>
- <div class="card paper-shadow-top-z-5">
- <div class="card-inner paper-shadow-bottom-z-5">
- </div>
- </div>
- </div>
- <aside>
- z-depth = 5
- </aside>
- </section>
-
- <br>
- <br>
- <br>
- <br>
-
- <polymer-element name="x-shadow" attributes="z" on-tap="{{tapAction}}">
- <template>
- <style>
- :host,
- .paper-shadow-bottom {
- display: block;
- background: white;
- color: #ccc;
- }
-
- :host(.fab),
- :host(.fab) .paper-shadow-bottom {
- width: 48px;
- height: 48px;
- border-radius: 24px;
- }
- </style>
- <paper-shadow z="{{z}}" animated></paper-shadow>
- </template>
- <script>
- Polymer('x-shadow', {
- publish: {
- z: {value: 0, reflect: true}
- },
- up: true,
- zChanged: function() {
- this.fire('shadow-z-changed');
- },
- tapAction: function() {
- if (this.up) {
- if (this.z < 5) {
- this.z += 1;
- } else {
- this.z -= 1;
- this.up = false;
- }
- } else {
- if (this.z > 0) {
- this.z -= 1;
- } else {
- this.z += 1;
- this.up = true;
- }
- }
- }
- });
- </script>
- </polymer-element>
-
- <section>
- <div>
- <x-shadow id="card" z="0" class="card"></x-shadow>
- </div>
- <aside>
- Tap to lift/drop the card.
- <br>
- Current z-index = <span id="card-z">0</span>
- </aside>
- <script>
- document.addEventListener('polymer-ready', function() {
- var fab = document.getElementById('card');
- fab.addEventListener('shadow-z-changed', function() {
- document.getElementById('card-z').textContent = fab.z;
- });
- });
- </script>
- </section>
-
- <section>
- <div>
- <style>
- x-shadow.fab {
- margin: 48px 142px;
- }
- </style>
- <x-shadow id="fab" z="0" class="fab"></x-shadow>
- </div>
- <aside>
- Tap to lift/drop the button.
- <br>
- Current z-index = <span id="fab-z">0</span>
- </aside>
- <script>
- document.addEventListener('polymer-ready', function() {
- var fab = document.getElementById('fab');
- fab.addEventListener('shadow-z-changed', function() {
- document.getElementById('fab-z').textContent = fab.z;
- });
- });
- </script>
- </section>
-
-</body>
-</html>
« no previous file with comments | « third_party/polymer/components/paper-shadow/bower.json ('k') | third_party/polymer/components/paper-shadow/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698