私は Windows 8 メトロ アプリケーションに取り組んでいます。私の default.html ファイルには、背景画像があります。
<div id="backgroundImage" >
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<filter id="myGaussianBlur" x="0" y="0">
<feGaussianBlur in="SourceGraphic" stdDeviation="2"></feGaussianBlur>
</filter>
</defs>
<image xlink:href="**surf.jpg**" width="100%" height="100%" preserveAspectRatio="none" filter="url(#myGaussianBlur)" />
</svg>
</div>
href="surf.jpg"
参考に交換したいと思います。Creator.js
現在の画像を保持するファイルがもう 1 つあります。
var ControlConstructor = WinJS.UI.Pages.define("Creator.html", {
// This function is called whenever a user navigates to this page. It
// populates the page elements with the app's data.
ready: function (element, options) {
// TODO: Initialize the page here.
// the options of the Creator are: image.
// image is the path to the boleh creator's background image.
options = options || {};
this._data = WinJS.Binding.as({ image: options.image });
また、ゲッターとセッターもあります。
// Getters/setters for image
image: {
get: function () { return this._data.image; },
set: function (value) { this._data.image = value; }
}