影像與文字清單 (集合) 範本 (HTML)
[ 本文的目標對象是撰寫 Windows 執行階段 App 的 Windows 8.x 和 Windows Phone 8.x 開發人員。如果您正在開發適用於 Windows 10 的 App,請參閱 最新文件 ]
定義包含圖示、較大粗體標題、較小次標題及描述性文字的項目。 這個範本用來與具備清單配置的 ListView 搭配使用。如需其他的範本,請參閱格線配置的項目範本以及清單配置的項目範本。
使用範本
如果要使用範本,請將 HTML 和 CSS 樣式複製到您的專案。HTML 有一個專門設計用來與範本搭配使用的 ListView。複製 HTML 之後,請將 ListView 控制項的 itemDataSource 設定成應用程式的資料來源,然後更新範本的 data-win-bind 屬性,讓它們可以處理您的資料。
若要讓範本正常運作,將 win-selectionstylefilled
類別指派到您的 ListView。
HTML
<!-- Item template -->
<div id="imageTextListCollectionTemplate"
data-win-control="WinJS.Binding.Template">
<div class="imageTextListCollection">
<img class="imageTextListCollectionImage"
data-win-bind="src: icon"/>
<div class="imageTextListCollectionTextArea">
<h4 class="imageTextListCollectionTextStrong"
data-win-bind="innerText: largeText"></h4>
<h6 class="imageTextListCollectionTextLight"
data-win-bind="innerText: smallText"></h6>
<div class="imageTextListCollectionText"
data-win-bind="innerText: mediumText"></div>
</div>
</div>
</div>
<!-- ListView -->
<div id="imageTextListCollection"
class="win-selectionstylefilled"
data-win-control="WinJS.UI.ListView"
data-win-options="{ itemDataSource: list.dataSource,
itemTemplate: select('#imageTextListCollectionTemplate'),
layout: { type: WinJS.UI.ListLayout } }">
</div>
CSS
/* overall list dimensions */
#imageTextListCollection {
margin: 0px 110px;
width: 531px; /* +31 px to account for margins applied by ListView */
height: 637px;
}
/*-------------------------------------------------------------------------------------------*/
/* imageTestList-collection - used in app template collection page in portrait*/
/*-------------------------------------------------------------------------------------------*/
/* style the background color of the filled-selection style items */
.win-selectionstylefilled :not(.win-footprint).win-container {
background-color: transparent;
}
.win-selectionstylefilled .win-container.win-swipe:hover {
background-color: transparent;
}
/* individual item dimensions */
#imageTextListCollection .imageTextListCollection {
display: -ms-grid;
width: 100%;
height: 120px;
padding: 5px;
overflow: hidden;
}
/* image */
.imageTextListCollection img.imageTextListCollectionImage {
-ms-grid-column: 1;
width: 110px;
height: 110px;
margin: 5px;
}
.imageTextListCollection .imageTextListCollectionTextArea {
-ms-grid-column: 2;
margin: 9px 5px 5px 5px;
line-height: 20px;
}
/* text line 1 */
.imageTextListCollection .imageTextListCollectionTextStrong {
width: 360px;
height: 20px;
overflow: hidden;
}
/* text line 2 */
.imageTextListCollection .imageTextListCollectionTextLight {
width: 360px;
height: 20px;
overflow: hidden;
}
/* text line 3 */
.imageTextListCollection .imageTextListCollectionText {
width: 360px;
height: 60px;
overflow: hidden;
}