日付ズーム テンプレート (HTML)
[ この記事は、Windows ランタイム アプリを作成する Windows 8.x および Windows Phone 8.x 開発者を対象としています。Windows 10 向けの開発を行っている場合は、「最新のドキュメント」をご覧ください]
SemanticZoom で使う、日付の一覧の縮小表示のための ListView 内の項目を定義します。 このテンプレートは、グリッド レイアウトの ListView と共に使います。これ以外のテンプレートについては、「グリッド レイアウト用の項目テンプレート」と「リスト レイアウト用の項目テンプレート」をご覧ください。
テンプレートを使うには
テンプレートを使うには、HTML と CSS スタイルをプロジェクトにコピーします。HTML には、テンプレートと共に使うように設計された ListView があります。
HTML
<!-- Item template -->
<div id="semanticZoomDateTemplate" data-win-control="WinJS.Binding.Template">
<div class="semanticZoomDate">
<div class="semanticZoomDateText">
<h2 class="semanticZoomDateDayMonth" data-win-bind="innerText: dayMonth"></h2>
<h2 class="semanticZoomDateYear" data-win-bind="innerText: year"></h2>
</div>
</div>
</div>
<!-- ListView -->
<div id="semanticZoomDate" style="position: relative; left: -1px; border: none"
data-win-control="WinJS.UI.ListView"
data-win-options="{ itemTemplate: select('#semanticZoomDateTemplate'), layout: { type: WinJS.UI.GridLayout } }">
</div>
CSS
/* overall grid dimensions */
#semanticZoomDate {
position: absolute;
top: calc(50% - 70px);
width: 1366px;
height: 158px;
}
/*-------------------------------------------------------------------------------------------*/
/* semantic zoom date template */
/*-------------------------------------------------------------------------------------------*/
/* starting margin */
#semanticZoomDate .win-horizontal.win-viewport .win-surface {
margin: 0px 115px;
}
/* individual item */
.semanticZoomDate {
color: white;
width: 170px;
height: 110px;
padding: 10px;
overflow: hidden;
display: -ms-flexbox;
-ms-flex-pack: end;
-ms-flex-direction: column;
background-color: rgba(70,23,180,1.0);
}
/* Text line 1: month */
.semanticZoomDate .semanticZoomDateDayMonth {
width: 170px;
white-space: nowrap;
}
/* Text line 2: year */
.semanticZoomDate .semanticZoomDateYear {
width: 170px;
white-space: nowrap;
}
/* High Contrast */
@media (-ms-high-contrast) {
/* add a border to the item */
.semanticZoomDate {
padding: 8px;
color: ButtonText;
background-color: ButtonFace;
border: 2px solid ButtonText;
}
/* outline shown on mouse hover */
#semanticZoomDate .win-container:hover {
outline: 3px solid Highlight;
}
/* use high contrast colors for hover state */
.semanticZoomDate:hover {
background-color: Highlight;
color: HighlightText;
border-color: HighlightText;
}
/* style the focus visual for edge-to-edge items */
#semanticZoomDate .win-focusedoutline {
outline-color: WindowText;
}
}