UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

31 lines 2.05 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = require("react"); var Image_1 = require("office-ui-fabric-react/lib/Image"); var Label_1 = require("office-ui-fabric-react/lib/Label"); var ImageMaximizeFrameExample = /** @class */ (function (_super) { tslib_1.__extends(ImageMaximizeFrameExample, _super); function ImageMaximizeFrameExample() { return _super !== null && _super.apply(this, arguments) || this; } ImageMaximizeFrameExample.prototype.render = function () { var imageProps = { src: 'http://placehold.it/500x500', imageFit: Image_1.ImageFit.cover, maximizeFrame: true }; return (React.createElement("div", null, React.createElement("p", null, "Where the exact width and height of the image's frame is not known, such as when sizing an image as a percentage of its parent, you can use the \"maximizeFrame\" prop to expand the frame to fill the parent element."), React.createElement(Label_1.Label, null, "The image is placed within a landscape container."), React.createElement("div", { style: { width: '200px', height: '100px' } }, React.createElement(Image_1.Image, tslib_1.__assign({}, imageProps, { alt: "Example implementation of the property maximize frame with a landscape container." }))), React.createElement("br", null), React.createElement(Label_1.Label, null, "The image is placed within a portrait container."), React.createElement("div", { style: { width: '100px', height: '200px' } }, React.createElement(Image_1.Image, tslib_1.__assign({}, imageProps, { alt: "Example implementation of the property maximize frame with a portrait container" }))))); }; return ImageMaximizeFrameExample; }(React.Component)); exports.ImageMaximizeFrameExample = ImageMaximizeFrameExample; //# sourceMappingURL=Image.MaximizeFrame.Example.js.map