次の方法で共有


アルファ ズーム テンプレート (HTML)

[ この記事は、Windows ランタイム アプリを作成する Windows 8.x および Windows Phone 8.x 開発者を対象としています。Windows 10 向けの開発を行っている場合は、「最新のドキュメント」をご覧ください]

SemanticZoom で使う、アルファベット順の一覧の縮小表示のための ListView 内の項目を定義します。 このテンプレートは、グリッド レイアウトの ListView と共に使います。これ以外のテンプレートについては、「グリッド レイアウト用の項目テンプレート」と「リスト レイアウト用の項目テンプレート」をご覧ください。

テンプレートを使うには

テンプレートを使うには、HTML と CSS スタイルをプロジェクトにコピーします。HTML には、テンプレートと共に使うように設計された ListView があります。

HTML

<!-- Item template -->
<div id="semanticZoomTemplate" data-win-control="WinJS.Binding.Template">
    <div class="semanticZoom">
        <h2 data-win-bind="innerText: text"></h2>
    </div>
</div>

<!-- ListView -->
<div id="semanticZoomAlpha"
    data-win-control="WinJS.UI.ListView" 
    data-win-options="{ itemTemplate: select('#semanticZoomTemplate'), layout: { type: WinJS.UI.GridLayout } }">
</div>

CSS

/* overall grid dimensions */
#semanticZoomAlpha {
    position: absolute;
    top: calc(50% - 210px); /* vertically center tiles */
    left: calc(50% - 630px); /* horizontally center tiles */
    width: 1260px;
    height: 430px;
}

    /*-------------------------------------------------------------------------------------------*/
    /* semantic zoom alpha template */
    /*-------------------------------------------------------------------------------------------*/
    #semanticZoomAlpha .win-container {
        margin: 5px 10px;
    }


/* individual item */
.semanticZoom {
    color: white;
    width: 140px;
    height: 52px;
    overflow: hidden;
    padding: 9px 15px;
    white-space: nowrap;
    display: -ms-flexbox;
    -ms-flex-pack: end;
    -ms-flex-direction: column;
    background-color: rgba(70,23,180,1.0);
}

/* High Contrast */
@media (-ms-high-contrast) {
    /* add a border to the item */
    .semanticZoom {
        padding: 8px;
        color: ButtonText;
        background-color: ButtonFace;
        border: 2px solid ButtonText;
    }

    /* outline shown on mouse hover */
    #semanticZoomAlpha .win-container:hover {
        outline: 3px solid Highlight;
    }

    /* use high contrast colors for hover state */
    .semanticZoom:hover {
        background-color: Highlight;
        color: HighlightText;
        border-color: HighlightText;
    }

    /* style the focus visual for edge-to-edge items */
    #semanticZoomAlpha .win-focusedoutline {
        outline-color: WindowText;
    }
}

関連トピック

グリッド レイアウト用の項目テンプレート

リスト レイアウト用の項目テンプレート