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

Unified Diff: third_party/polymer/components/core-animation/demo.html

Issue 1215543002: Remove Polymer 0.5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit test Created 5 years, 6 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/core-animation/demo.html
diff --git a/third_party/polymer/components/core-animation/demo.html b/third_party/polymer/components/core-animation/demo.html
deleted file mode 100644
index ddbbc75658caa579d64cd667152a07f524386662..0000000000000000000000000000000000000000
--- a/third_party/polymer/components/core-animation/demo.html
+++ /dev/null
@@ -1,193 +0,0 @@
-<!--
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
-The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
-Code distributed by Google as part of the polymer project is also
-subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
--->
-<!DOCTYPE html>
-<html>
-<head>
-
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
-
- <title>core-animation</title>
-
- <script src="../webcomponentsjs/webcomponents.js"></script>
-
- <link href="../font-roboto/roboto.html" rel="import">
- <link href="../core-icon/core-icon.html" rel="import">
- <link href="../core-icons/core-icons.html" rel="import">
-
- <link href="core-animation.html" rel="import">
- <link href="core-animation-group.html" rel="import">
-
- <style shim-shadowdom>
-
- body {
- font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
- font-size: 14px;
- margin: 0;
- padding: 24px;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- -webkit-touch-callout: none;
- }
-
- section {
- padding: 20px 0;
- }
-
- section > div {
- padding: 14px;
- font-size: 16px;
- }
-
- html /deep/ core-icon {
- height: 48px;
- width: 48px;
- }
-
- #target {
- display: inline-block;
- font-size: 32px;
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- }
-
- </style>
-
-</head>
-<body unresolved onclick="clickAction(event);">
-
- <section>
-
- <div>
- <div id="target" layout horizontal center>
- <core-icon icon="polymer"></core-icon>
- <span>polymer</span>
- </div>
- </div>
-
- <button>
- opacity
- <core-animation id="raw" duration="1000">
- <core-animation-keyframe>
- <core-animation-prop name="opacity" value="1">
- </core-animation-prop>
- </core-animation-keyframe>
- <core-animation-keyframe>
- <core-animation-prop name="opacity" value="0.3">
- </core-animation-prop>
- </core-animation-keyframe>
- <core-animation-keyframe>
- <core-animation-prop name="opacity" value="1">
- </core-animation-prop>
- </core-animation-keyframe>
- </core-animation>
- </button>
-
- <button>
- group: opacity + scale
- <core-animation-group type="seq">
- <core-animation duration="300">
- <core-animation-keyframe>
- <core-animation-prop name="opacity" value="1">
- </core-animation-prop>
- </core-animation-keyframe>
- <core-animation-keyframe>
- <core-animation-prop name="opacity" value="0.3">
- </core-animation-prop>
- </core-animation-keyframe>
- <core-animation-keyframe>
- <core-animation-prop name="opacity" value="1">
- </core-animation-prop>
- </core-animation-keyframe>
- </core-animation>
- <core-animation duration="300">
- <core-animation-keyframe>
- <core-animation-prop name="transform" value="scale(1)">
- </core-animation-prop>
- </core-animation-keyframe>
- <core-animation-keyframe>
- <core-animation-prop name="transform" value="scale(1.2)">
- </core-animation-prop>
- </core-animation-keyframe>
- <core-animation-keyframe>
- <core-animation-prop name="transform" value="scale(1)">
- </core-animation-prop>
- </core-animation-keyframe>
- </core-animation>
- </core-animation-group>
- </button>
-
- <button>
- infinite duration
- <core-animation duration="1000" iterations="Infinity" direction="alternate">
- <core-animation-keyframe>
- <core-animation-prop name="opacity" value="1">
- </core-animation-prop>
- </core-animation-keyframe>
- <core-animation-keyframe>
- <core-animation-prop name="opacity" value="0.3">
- </core-animation-prop>
- </core-animation-keyframe>
- </core-animation>
- </button>
-
- <button>
- custom effect
- <core-animation id="custom-animation" duration="500"></core-animation>
- </button>
-
- </section>
-
- <script>
- var player;
-
- document.body.addEventListener('core-animation-finish', function(e) {
- console.log('core-animation-finish');
- if (player) {
- player.cancel();
- player = null;
- target.querySelector('span').textContent = 'polymer';
- }
- });
-
- var customAnimationFn = function(timeFraction, target) {
- // var colors = [
- // '#db4437',
- // '#ff9800',
- // '#ffeb3b',
- // '#0f9d58',
- // '#4285f4',
- // '#3f51b5',
- // '#9c27b0'
- // ];
- target.querySelector('span').textContent = timeFraction;
- };
-
-
- function clickAction(e) {
- var t = e.target;
- if (e.target.localName !== 'button') {
- return;
- }
-
- if (player) {
- player.cancel();
- }
-
- var a = t.querySelector('core-animation,core-animation-group');
- if (a.id === 'custom-animation') {
- a.customEffect = customAnimationFn;
- }
-
- a.target = document.getElementById('target');
- player = a.play();
- }
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698