我想在 iphone 中移动应用程序时制作看起来像Itunes 的自定义WEBSITE菜单(类似于https://www.youtube.com/watch?v=ySx-rLJ0Ng0)。基本上我将有 1 个列表作为源和 1 个网格作为目标,但是网格将每 20 个项目进行分页或分组。
到目前为止,我使用 c# asp.net HTML5 和 Jquery 创建,但我无法进行分组或分页(我使用了可排序列表的方法,但我从这个源 http[:]// 修改了 css 到网格farhadi.ir/projects/html5sortable/)。
你有什么想法吗?
我在这里画我想做的东西 http://imageshack.us/photo/my-images/69/whatiwant.png/
就像我说的,我有 1 个网格,每页最多可容纳 20 个项目,还有 1 个用于填充网格的列表。我想要的只是当我在网格中放置超过 20 个项目时,网格将显示新页面来放置项目
现在我使用 HTML5 和 jquery,这是我的代码:
<section id="demos">
<style>
#demos section {
overflow: hidden;
}
.sortable {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.sortable.grid {
overflow: hidden;
width: 500px;
background-image:url('Images/background.png');
background-repeat:repeat-y;
}
.sortable li {
list-style: none;
border: 1px solid #CCC;
background: #F6F6F6;
color: #1C94C4;
margin: 5px;
padding: 5px;
height: 22px;
}
.sortable.grid li {
line-height: 80px;
float: left;
width: 80px;
height: 80px;
text-align: center;
font-size:x-small;
}
.handle {
cursor: move;
}
.sortable.connected {
min-height: 100px;
float: left;
}
li.disabled {
opacity: 0.5;
}
li.highlight {
background: #FEE25F;
}
li.sortable-placeholder {
border: 1px dashed #CCC;
background: none;
}
</style>
<section>
<h1>Connected Sortable Lists</h1>
<ul id="sortable4" class="connected sortable grid">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<table style="display: block; height: 400px; overflow-y: scroll;">
<tr>
<td>
<ul id="sortable5" class="connected sortable list">
<li class="highlight">Item A</li>
<li class="highlight">Item B</li>
</ul>
</td>
</tr>
</table>
</section>
我只是不知道如何在我的网格中进行分页。
谢谢