HTML5 Itunes拖放应用程序外观相似

时间:2013-01-21 07:25:07

标签: c# jquery asp.net css html5

我想制作自定义网站菜单看起来像 Itunes在iphone中移动应用时 (像这样https://www.youtube.com/watch?v=ySx-rLJ0Ng0)。 基本上我将1个列表作为源,1个网格作为目标,但网格将每20个项目进行分页或分组。

到目前为止,我已经使用c#asp.net HTML5和Jquery来创建,但我无法进行分组或分页(我使用了可排序列表的方法,但我将css修改为网格来自此源http [: ] // 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>

我根本不知道如何在我的网格中进行打击。

谢谢

0 个答案:

没有答案