이미지 및 텍스트 목록(방문 스냅) 템플릿(HTML)
[ 이 문서는 Windows 런타임 앱을 작성하는 Windows 8.x 및 Windows Phone 8.x 개발자를 대상으로 합니다. Windows 10용으로 개발하는 경우에는 최신 설명서를 참조하세요.]
아이콘과 텍스트가 포함된 사이드 뷰의 항목을 정의합니다. 이 템플릿은 목록 레이아웃이 있는 ListView에 사용됩니다. 추가 템플릿에 대해서는 그리드 레이아웃용 항목 템플릿 및 목록 레이아웃용 항목 템플릿을 참조하세요.
템플릿을 사용하려면
템플릿을 사용하려면 HTML 및 CSS 스타일을 프로젝트로 복사합니다. HTML은 템플릿과 함께 사용하도록 설계된 ListView를 포함합니다. HTML을 복사한 후에는 ListView 컨트롤의 itemDataSource를 앱의 데이터 원본에 설정하고 템플릿의 data-win-bind 특성을 업데이트하여 데이터 작업을 할 수 있게 합니다.
템플릿이 제대로 작동하도록 하려면 win-selectionstylefilled
클래스를 ListView에 할당합니다.
HTML
<!-- Item template -->
<div id="imageTextListLandingTemplate"
data-win-control="WinJS.Binding.Template">
<div class="imageTextListLandingSnap">
<img class="imageTextListLandingSnapImage"
data-win-bind="src: icon"/>
<div class="imageTextListLandingSnapText"
data-win-bind="innerText: largeText"></div>
</div>
</div>
<!-- ListView -->
<div id="imageTextListLandingSnap"
class="win-selectionstylefilled"
style="position: relative; left: -1px; top: 129px; border: none"
data-win-control="WinJS.UI.ListView"
data-win-options="{ itemDataSource: list.dataSource,
itemTemplate: select('#imageTextListLandingTemplate'),
layout: { type: WinJS.UI.ListLayout } }">
</div>
CSS
/* overall list dimensions */
#imageTextListLandingSnap {
margin-left: 110px;
width: 323px; /* +31 px to account for margins applied by ListView */
height: 633px;
}
/*-------------------------------------------------------------------------------------------*/
/* imageTextList-landingSnap - used in app template landing page snap view */
/*-------------------------------------------------------------------------------------------*/
/* 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;
}
/* margins between items */
#imageTextListLandingSnap .win-container {
margin-top: 0px;
margin-bottom: 0px;
}
/* hide the hover outline for edge-to-edge items */
#imageTextListLandingSnap .win-container:hover {
outline: none;
}
/* individual item dimensions */
.imageTextListLandingSnap {
display: -ms-flexbox;
padding: 5px;
width: 282px;
height: 50px;
}
/* image: icon */
.imageTextListLandingSnap img.imageTextListLandingSnapImage {
width: 40px;
height: 40px;
margin: 5px;
}
/* Text line 1 */
.imageTextListLandingSnap .imageTextListLandingSnapText {
-ms-flex: 1;
height: 40px;
margin: 4px 5px 5px 5px;
overflow: hidden;
}
/* style the focus visual for edge-to-edge items */
#imageTextListLandingSnap .win-focusedoutline {
width: calc(100% - 4px);
height: calc(100% - 4px);
left: 2px;
top: 2px;
z-index: 5;
}