0

私は無限スクロール機能を備えた jQuery のプラグインについて調べるのに多くの時間を費やしてきました。ほとんどの場合、常に PHP と MySQL を一緒に使用します。フロントエンドの無限スクロールについて何か提案はありますか? ほぼ 500 枚の画像を読み込む画像ギャラリーを構築しています。

        <section class="work">

            <figure class="new_release">
                <a rel="new_release" class="fancybox" href="images/big/1.png" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean eleifend mauris tincidunt dui mattis lacinia vel nec orci. Aliquam eget.">
                    <img src="images/1.png" alt="afadsf" />
                    <dl>
                        <dt>Client</dt>
                            <dd>Envato</dd>
                        <dt>Role</dt>
                            <dd>Popularity</dd> 
                    </dl>
                </a>    
            </figure>   

            <figure class="Popularity">
                <a rel="Popularity" class="fancybox" href="images/big/2.png" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean eleifend mauris tincidunt dui mattis lacinia vel nec orci. Aliquam eget.">
                    <img src="images/2.png" alt="" />
                    <dl>
                        <dt>Client</dt>
                            <dd>Envato</dd>
                        <dt>Role</dt>
                            <dd>Popularity</dd> 
                    </dl>
                </a>    
            </figure>   
                            .....
                            .....
                            .....
        </section>

Figure コンテナーは、他の画像を表示するための繰り返しコードになります。

4

2 に答える 2

0

これに出くわしました。wordpress プラグインと jquery プラグインのようです。

http://www.infinite-scroll.com/

画像のリストを取得したら、PHP と mySQL を使用せずに簡単に管理できると思います。人々はおそらく、データのページネーションに PHP と mySQL を使用しています。

于 2013-02-07T20:18:29.607 に答える