在此代码中,如何将缩略图大小中心更改为图像完全适合的240 x 240大小缩略图?
<?php
$directory = 'images';
$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++;
}
}
closedir($dir_handle);
?>
答案 0 :(得分:0)
您可以尝试在css中使用background-size
属性,
background: color position size repeat origin clip attachment image;
background-size:240px 240px;
的CSS:
<style>
.thumbnail{
background-repeat:no-repeat;
background-size:240px 240px;
background-position:center;
}
</style>
PHP:
<?php
echo '
<div class="pic thumbnail '.$nomargin.'" style="background-image:url('.$directory.'/'.$file.');">
<a href="'.$directory.'/'.$file.'" title="'.$title.'" target="_blank">'.$title.'</a>
</div>';
?>