| Index: third_party/polymer/v1_0/components-chromium/iron-image/iron-image.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/iron-image/iron-image.html b/third_party/polymer/v1_0/components-chromium/iron-image/iron-image.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5c8e3a0f9c221db6929bbd1728d943103b8dfe6f
|
| --- /dev/null
|
| +++ b/third_party/polymer/v1_0/components-chromium/iron-image/iron-image.html
|
| @@ -0,0 +1,120 @@
|
| +<!--
|
| +@license
|
| +Copyright (c) 2015 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
|
| +--><html><head><link rel="import" href="../polymer/polymer.html">
|
| +<link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
|
| +
|
| +<!--
|
| +`iron-image` is an element for displaying an image that provides useful sizing and
|
| +preloading options not found on the standard `<img>` tag.
|
| +
|
| +The `sizing` option allows the image to be either cropped (`cover`) or
|
| +letterboxed (`contain`) to fill a fixed user-size placed on the element.
|
| +
|
| +The `preload` option prevents the browser from rendering the image until the
|
| +image is fully loaded. In the interim, either the element's CSS `background-color`
|
| +can be be used as the placeholder, or the `placeholder` property can be
|
| +set to a URL (preferably a data-URI, for instant rendering) for an
|
| +placeholder image.
|
| +
|
| +The `fade` option (only valid when `preload` is set) will cause the placeholder
|
| +image/color to be faded out once the image is rendered.
|
| +
|
| +Examples:
|
| +
|
| + Basically identical to `<img src="...">` tag:
|
| +
|
| + <iron-image src="http://lorempixel.com/400/400"></iron-image>
|
| +
|
| + Will letterbox the image to fit:
|
| +
|
| + <iron-image style="width:400px; height:400px;" sizing="contain"
|
| + src="http://lorempixel.com/600/400"></iron-image>
|
| +
|
| + Will crop the image to fit:
|
| +
|
| + <iron-image style="width:400px; height:400px;" sizing="cover"
|
| + src="http://lorempixel.com/600/400"></iron-image>
|
| +
|
| + Will show light-gray background until the image loads:
|
| +
|
| + <iron-image style="width:400px; height:400px; background-color: lightgray;"
|
| + sizing="cover" preload src="http://lorempixel.com/600/400"></iron-image>
|
| +
|
| + Will show a base-64 encoded placeholder image until the image loads:
|
| +
|
| + <iron-image style="width:400px; height:400px;" placeholder="data:image/gif;base64,..."
|
| + sizing="cover" preload src="http://lorempixel.com/600/400"></iron-image>
|
| +
|
| + Will fade the light-gray background out once the image is loaded:
|
| +
|
| + <iron-image style="width:400px; height:400px; background-color: lightgray;"
|
| + sizing="cover" preload fade src="http://lorempixel.com/600/400"></iron-image>
|
| +
|
| +Custom property | Description | Default
|
| +----------------|-------------|----------
|
| +`--iron-image-placeholder` | Mixin applied to #placeholder | `{}`
|
| +`--iron-image-width` | Sets the width of the wrapped image | `auto`
|
| +`--iron-image-height` | Sets the height of the wrapped image | `auto`
|
| +
|
| +@group Iron Elements
|
| +@element iron-image
|
| +@demo demo/index.html
|
| +-->
|
| +
|
| +</head><body><dom-module id="iron-image">
|
| + <template>
|
| + <style>
|
| + :host {
|
| + display: inline-block;
|
| + overflow: hidden;
|
| + position: relative;
|
| + }
|
| +
|
| + #sizedImgDiv {
|
| + @apply(--layout-fit);
|
| +
|
| + display: none;
|
| + }
|
| +
|
| + #img {
|
| + display: block;
|
| + width: var(--iron-image-width, auto);
|
| + height: var(--iron-image-height, auto);
|
| + }
|
| +
|
| + :host([sizing]) #sizedImgDiv {
|
| + display: block;
|
| + }
|
| +
|
| + :host([sizing]) #img {
|
| + display: none;
|
| + }
|
| +
|
| + #placeholder {
|
| + @apply(--layout-fit);
|
| +
|
| + background-color: inherit;
|
| + opacity: 1;
|
| +
|
| + @apply(--iron-image-placeholder);
|
| + }
|
| +
|
| + #placeholder.faded-out {
|
| + transition: opacity 0.5s linear;
|
| + opacity: 0;
|
| + }
|
| + </style>
|
| +
|
| + <div id="sizedImgDiv" role="img" hidden$="[[_computeImgDivHidden(sizing)]]" aria-hidden$="[[_computeImgDivARIAHidden(alt)]]" aria-label$="[[_computeImgDivARIALabel(alt, src)]]"></div>
|
| + <img id="img" alt$="[[alt]]" hidden$="[[_computeImgHidden(sizing)]]">
|
| + <div id="placeholder" hidden$="[[_computePlaceholderHidden(preload, fade, loading, loaded)]]" class$="[[_computePlaceholderClassName(preload, fade, loading, loaded)]]"></div>
|
| + </template>
|
| +
|
| + </dom-module>
|
| +<script src="iron-image-extracted.js"></script></body></html>
|
|
|