|
|
|
ทำGallery ด้วย jqery php แต่รูปไม่เรียงตามชื่อครับอยากให้รูปแสดงเรียงตามชื่อที่ตั้งไว้ |
|
|
|
|
|
|
|
ผมทำ Gallery ด้วย jqery Php ผมตั้งชื่อรูป 1-30 แต่เวลารูปแสดง รูปจะสลับกัน ไม่เรียงตามชื่อรูป เช่น แสดงเริ่มจาก 1-30 อ่ะครับ
ไม่ทราบต้องทำไงให้รูปเรียงตามชื่อ ผมแปะโค๊ดมาด้วยครับ
Code (PHP)
$directory = 'gallery/Mother-Day53';
$allowed_types=array('jpg','jpeg','gif','png');
$file_parts=array();
$ext='';
$title='';
$i=0;
$dir_handle = @opendir($directory) or die("There is an error with your image directory!");
while ($file = readdir($dir_handle))
{
if($file=='.' || $file == '..') continue;
$file_parts = explode('.',$file);
$ext = strtolower(array_pop($file_parts));
$title = implode('.',$file_parts);
$title = htmlspecialchars($title);
$nomargin='';
if(in_array($ext,$allowed_types))
{
if(($i+1)%4==0) $nomargin='nomargin';
echo '
<div class="pic '.$nomargin.'" style="background:url('.$directory.'/'.$file.') no-repeat 50% 50%;">
<a href="'.$directory.'/'.$file.'" title="'.$title.'" target="_blank">'.$title.'</a>
</div>';
$i++;
}
}
Tag : PHP, MySQL, HTML/CSS, JavaScript, jQuery
|
|
|
|
|
|
Date :
2010-08-18 13:28:11 |
By :
อ่อนซ้อม |
View :
1028 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใหนคำสั่ง jquery
|
|
|
|
|
Date :
2010-08-18 14:03:00 |
By :
หนักซ้อม |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
$(document).ready(function(){
$('.pic a').lightBox({
imageLoading: 'lightbox/images/loading.gif',
imageBtnClose: 'lightbox/images/close.gif',
imageBtnPrev: 'lightbox/images/prev.gif',
imageBtnNext: 'lightbox/images/next.gif'
});
});
/* script.js ที่เรียกใช้ครับ*/
/*ส่วนตรงนี้คือเรียกมาใช้อ่ะครับ */
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="lightbox/js/jquery.lightbox-0.5.pack.js"></script>
<script type="text/javascript" src="js/script.js"></script>
|
|
|
|
|
Date :
2010-08-18 14:53:52 |
By :
อ่อนซ้อม |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|