office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
29 lines • 2.16 kB
JavaScript
define(["require", "exports", "tslib", "react", "office-ui-fabric-react/lib/Image", "office-ui-fabric-react/lib/Label"], function (require, exports, tslib_1, React, Image_1, Label_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
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