sencha touch嵌套列表的Javascript或jquery版本?

sencha touch嵌套列表的Javascript或jquery版本?,javascript,jquery,css,sencha-touch-2,Javascript,Jquery,Css,Sencha Touch 2,我非常喜欢secha touch 2中的滑动嵌套列表模式: 我也将其视为一种ios模式,我想知道是否有任何纯javascript或jquery模块允许我在sencha touch框架之外使用它 或者,如果不是的话,关于如何使用html5、css3和javascript(如果需要,也许还有jquery)实现这一点,有什么模糊的、手工的想法吗 我见过jquery移动嵌套列表,它没有滑动效果——没有sencha touch版本那么酷:) 提前谢谢 在中查看jQuery移动过渡效果。它们可以应用于嵌套

我非常喜欢secha touch 2中的滑动嵌套列表模式:

我也将其视为一种ios模式,我想知道是否有任何纯javascript或jquery模块允许我在sencha touch框架之外使用它

或者,如果不是的话,关于如何使用html5、css3和javascript(如果需要,也许还有jquery)实现这一点,有什么模糊的、手工的想法吗

我见过jquery移动嵌套列表,它没有滑动效果——没有sencha touch版本那么酷:)


提前谢谢

在中查看jQuery移动过渡效果。它们可以应用于嵌套列表链接,以创建您想要的任何效果


主要的
其他
<div data-role="page" id="main">
<div data-role="header">main</div>
<div data-role="content">
    <ul data-role="listview">
        <li><a href="#other" data-transition="slide">other</a></li>
    </ul>
</div>
</div>
<div data-role="page" id="other">
<div data-role="header">other</div>
<div data-role="content">
    <ul data-role="listview">
        <li><a href="#main" data-transition="slide">main</a></li>
    </ul>
</div>
</div>