Jump to content
  • 0

Масштабирование фонового изображения


parse
 Share

Question

Господа, добрый день! Нуждаюсь в вашей помощи.

Мне необходимо было сверстать сайт, где фоном является большое изображение + "полоски" над и под изображением.

Дело усложняется тем, что при загрузке страницы фоновым изображением является рандомная картинка, подгружаемая через php-скрипт (все изображения лежат в одной папке).

Как сделать так, чтобы подгружаемые изображения масштабировались в рамках резиновой верстки? Потому что на данный момент изображение масштабируется с неправильной высотой из-за чего фон выглядит крайне неприлично.

хтмл

<div class="fon">
<table>
<tr>
<td height="98" background="#ffffff" >1</td>
</tr>
<tr>
<td>
<img src="fon/rotate.php"/>
</td>
</tr>
<tr>
<td height="58" >2</td>
</tr>
</table>
</div>

сцц

.fon{
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index:-9999;
}



.fon table{
margin: 0px auto !important;
background:#fff;
}

.fon td{
width:100%;
}

.fon img{
width:100%;
height:80%;
}

собственно скрипт rotate.php

$img = null;

if (substr($folder,-1) != '/') {
$folder = $folder.'/';
}

if (isset($_GET['img'])) {
$imageInfo = pathinfo($_GET['img']);
if (
isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
file_exists( $folder.$imageInfo['basename'] )
) {
$img = $folder.$imageInfo['basename'];
}
} else {
$fileList = array();
$handle = opendir($folder);
while ( false !== ( $file = readdir($handle) ) ) {
$file_info = pathinfo($file);
if (
isset( $extList[ strtolower( $file_info['extension'] ) ] )
) {
$fileList[] = $file;
}
}
closedir($handle);

if (count($fileList) > 0) {
$imageNumber = time() % count($fileList);
$img = $folder.$fileList[$imageNumber];
}
}

if ($img!=null) {
$imageInfo = pathinfo($img);
$contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
header ($contentType);
readfile($img);
} else {
if ( function_exists('imagecreate') ) {
header ("Content-type: image/png");
$im = @imagecreate (100, 100)
or die ("Cannot initialize new GD image stream");
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 0,0,0);
imagestring ($im, 2, 5, 5, "IMAGE ERROR", $text_color);
imagepng ($im);
imagedestroy($im);
}
}

?>

Прошу прощения за сумбурность описания, надеюсь на вашу помощь.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy