0

私は 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; }
    }
4

1 に答える 1

0

アプリを開発しようとしているときに、JavaScriptを使用したコード書き込みブログリーダーがあったことを知りました。.....リンクを共有しているので、何らかの形で役立つかどうかを確認できます。

http://msdn.microsoft.com/en-us/library/windows/apps/hh974582.aspx

Codeprojectにある簡単な記事を確認することもできます.....これは http://www.codeproject.com/Articles/338916/Windows-8-JavaScript-Metro-Application-Getting-Staにも役立ちます

于 2012-10-06T16:31:48.703 に答える