-3

私は MYSQL DB に 1000 枚の写真を持っています。

masonry jquery Script に出会いました。コードは HTML ファイルでの使用法を示していますが、PHP で使用する方法が見つかりませんでした。

http://masonry.desandro.com/demos/infinite-scroll.html

PHP を使用すると、すべての画像を Echo すると、ページが非常に重くなります。一番下のスクロールに到達したときに MYSQL DB から画像を取得するために Masonry を統合して、ページが明るくなるようにするにはどうすればよいですか?

私はこれに関して少し混乱しています。私は PHP の専門家ではありません。任意のヘルプをいただければ幸いです。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
  <title>Adi</title>

  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Adi</title>

<link rel="stylesheet" type="text/css" href="style.css" />


<script src="jquery-1.7.1.min.js"></script>
<script src="jquery.masonry.min.js"></script>
<script src="jquery.infinitescroll.min.js"></script>
<script src="modernizr-transitions.js"></script>


</head>

<body>



<div id="container" class="transitions-enabled infinite-scroll clearfix">
<?php
// Make a MySQL Connection
mysql_connect("localhost", "ID", "Pass") or die(mysql_error());
mysql_select_db("DB") or die(mysql_error());

// Retrieve all the data from the "test " table
$result = mysql_query("SELECT * FROM test limit 10")
or die(mysql_error());  

// store the records of the "TABLENAME" table into $row array and loop through
while ( $row = mysql_fetch_array( $result, MYSQL_ASSOC ) ) {

// Print out the contents of the entry 

//echo "details: ".$row['id'];
echo '<div class="box">';
echo "<img src=\"images/".$row['image']."\" alt=\"name\" />";
echo '</div>';
}
?>
</div>
<p>Hi</p>
<p>&nbsp;</p>

<nav id="page-nav">
  <a href="2.php"></a>
</nav>

<script >


  $(function(){

    var $container = $('#container');

    $container.imagesLoaded(function(){
      $container.masonry({
        itemSelector: '.box',
        columnWidth: 60
      });
    });

    $container.infinitescroll({
      navSelector  : '#page-nav',    // selector for the paged navigation 
      nextSelector : '#page-nav a',  // selector for the NEXT link (to page 2)
      itemSelector : '.box',     // selector for all items you'll retrieve
      loading: {
          finishedMsg: 'No more pages to load.',
          img: 'http://i.imgur.com/6RMhx.gif'
        }
      },
      // trigger Masonry as a callback
      function( newElements ) {
        // hide new items while they are loading
        var $newElems = $( newElements ).css({ opacity: 0 });
        // ensure that images load before adding to masonry layout
        $newElems.imagesLoaded(function(){
          // show elems now they're ready
          $newElems.animate({ opacity: 1 });
          $container.masonry( 'appended', $newElems, true ); 
        });
      }
    );

  });



</script>


</body>
</html>

ページ 2.php が含まれています

<?php
    // Make a MySQL Connection
    mysql_connect("localhost", "ID", "Pass") or die(mysql_error());
    mysql_select_db("DB") or die(mysql_error());

    // Retrieve all the data from the "test " table
    $result = mysql_query("SELECT * FROM test limit 5")
    or die(mysql_error());  

    // store the records of the "TABLENAME" table into $row array and loop through
    while ( $row = mysql_fetch_array( $result, MYSQL_ASSOC ) ) {

    // Print out the contents of the entry 

    //echo "details: ".$row['id'];
    echo '<div class="box">';
    echo "<img src=\"images/".$row['image']."\" alt=\"name\" />";
    echo '</div>';
    }
    ?>
4

1 に答える 1

2

本当に素敵なものを見せびらかしたい場合は、これを調べてください:http: //isotope.metafizzy.co/ 統合が非常に簡単なので、私はそれを自分で使用しました。

あなたがすることはこれです。すべての同位体を設定した後。(方法を説明します)このようにページにPHP関数を設定します。

<div id="container">
    <?php
        $QUERY = "SELECT * FROM `IMAGES` ORDER BY `ID` Limit 20;"; // 20 Image Limit
        $RESULTS = mysql_query($QUERY);
        while($ROW = mysql_fetch_assoc($RESULTS)) {
            echo '<div class=" Your Main Name For The Isotope Objects "><img src="' . $ROW['URL'] . '" /></div>';
        }
    ?>
</div>

while()は、限界に達するまでDBを通過し続け、画像を含む20divを提供します。

于 2012-04-21T16:42:56.417 に答える