我正在开发 Sencha 触摸应用程序。
我使用Ext.list
sencha touch 组件创建了列表视图。
我已经使用 CSS 为所有列表项设置了背景图片
.x-list .x-list-item {
position: absolute !important;
left: 0;
top: 0;
width: 100%;
height:20px;
background: url('../images/list_1.png');
background-repeat: no-repeat;
background-size: 97% 98%;
}
现在我想为不同的列表项设置不同的图像。这可能吗?