带有可扩展列表和带有说明的图标的智能用户界面

问题描述 投票:0回答:1

我希望此列表缩略图可扩展,并且还允许我添加我的文本

我已经在互联网上搜索了,到目前为止,我只能选择一个,不能同时选择两者。

enter image description here

html css onsen-ui
1个回答
0
投票
<ons-page>
  <ons-list>
    <ons-list-header>Thumbnails and titles</ons-list-header>
    <ons-list-item expandable>
      <div class="left">
        <img class="list-item__thumbnail" src="https://placekitten.com/g/40/40">
      </div>
      <div class="center">
        <span class="list-item__title">Cutest kitty</span><span class="list-item__subtitle">On the Internet</span>
      </div>
      <div class="expandable-content">Expandable content</div>
    </ons-list-item>
  </ons-list>
</ons-page>
© www.soinside.com 2019 - 2024. All rights reserved.