我怎样才能让我的捕捉到窗口?

发布于 2024-11-02 09:53:44 字数 1850 浏览 0 评论 0原文

我正在使用 jQtouch 和这个 JQTouch 扩展 http://code.google.com/p/jqextensions/

我有我的标记,因为

<div id="uiPage">
    <div class="toolbar">
        <h1>UI/UX Design</h1>
        <a class="button back" href="#home">Back</a>
    </div>        
    <div class="horizontal-slide">
        <table>
            <tr>
                <td>
                    <div class="slide-container current">
                        <img src="gallery/one.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/two.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/three.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/four.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/five.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/six.jpg" />
                    </div>
                </td>
            </tr>
        </table>
    </div>
</div>

我希望 td 能够捕捉到窗口,就像 iPhone 主屏幕中的 UI 一样。

谁能帮我弄清楚如何使 td 捕捉到窗口?

I'm using jQtouch and this JQTouch extension at http://code.google.com/p/jqextensions/.

I've my markup as

<div id="uiPage">
    <div class="toolbar">
        <h1>UI/UX Design</h1>
        <a class="button back" href="#home">Back</a>
    </div>        
    <div class="horizontal-slide">
        <table>
            <tr>
                <td>
                    <div class="slide-container current">
                        <img src="gallery/one.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/two.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/three.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/four.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/five.jpg" />
                    </div>
                </td>
                <td>
                    <div class="slide-container">
                        <img src="gallery/six.jpg" />
                    </div>
                </td>
            </tr>
        </table>
    </div>
</div>

I want the td s to snap to the window just like the UI does as in the iPhone home screen.

Can anyone help me figure out how to make the tds snap to the window?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虐人心 2024-11-09 09:53:44

为什么不使用 jQTouch 照片库扩展程序?看看演示(特别是“照片库”和“照片库 2”) )。

基本设置如下所示:

jQT.generateGallery("pageID",
    [
    {src:"http://www.site.com/somepic.jpg"},
    {src:"pic1.jpg",caption:"Test Image 1"}
    ],
    {
       hideToolbars: function() { }
    }
);

编辑:

要显示工具栏,也可以这样做。这是一个演示: http://jsbin.com/aqito4/7

只需禁用 hideToolbars 选项,请参阅上面修改后的代码。

Why don't you use the jQTouch Photo Gallery extension? Take a look at the demo (esp "Photo Gallery" and "Photo Gallery 2").

A basic setup would look like this:

jQT.generateGallery("pageID",
    [
    {src:"http://www.site.com/somepic.jpg"},
    {src:"pic1.jpg",caption:"Test Image 1"}
    ],
    {
       hideToolbars: function() { }
    }
);

EDIT:

To show toolbars, it can be done as well. Here is a demo: http://jsbin.com/aqito4/7

Simply disable the hideToolbars option, see modified code above.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文