Inline scripts were extracted from Polymer elements.
[chromium-blink-merge.git] / third_party / polymer / components-chromium / core-animated-pages / transitions / slide-from-right.html
blob9a847d29af37e2d2da83055ea39f8f6ccba1f4e6
1 <!--
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
8 -->
10 <link href="core-transition-pages.html" rel="import">
12 <!--
13 Warning: This transition does not work well in combination with other transitions, because
14 it operates on the page rather than the page's children.
15 -->
17 <core-style id="slide-from-right">
18 polyfill-next-selector { content: ':host(.slide-from-right) > *'; }
19 :host(.slide-from-right) ::content > * {
20 -webkit-transition: -webkit-transform {{g.transitions.slideDuration || g.transitions.duration}} cubic-bezier(0.4, 0, 0.2, 1);
21 transition: transform {{g.transitions.slideDuration || g.transitions.duration}} cubic-bezier(0.4, 0, 0.2, 1);
24 polyfill-next-selector { content: ':host(.slide-from-right) > .core-selected ~ [animate]:not(.core-selected)'; }
25 :host(.slide-from-right) ::content > .core-selected ~ [animate]:not(.core-selected) {
26 -webkit-transform: translateX(100%);
27 transform: translateX(100%);
30 polyfill-next-selector { content: ':host(.slide-from-right) > [animate]:not(.core-selected)'; }
31 :host(.slide-from-right) ::content > [animate]:not(.core-selected) {
32 -webkit-transform: translateX(-100%);
33 transform: translateX(-100%);
36 polyfill-next-selector { content: ':host(.slide-from-right) > .core-selected'; }
37 :host(.slide-from-right) ::content > .core-selected {
38 -webkit-transform: none;
39 transform: none;
41 </core-style>
43 <core-transition-pages id="slide-from-right" scopeClass="slide-from-right"></core-transition-pages>