Jump to content

parse

Newbie
  • Posts

    1
  • Joined

  • Last visited

Everything posted by parse

  1. Господа, добрый день! Нуждаюсь в вашей помощи. Мне необходимо было сверстать сайт, где фоном является большое изображение + "полоски" над и под изображением. Дело усложняется тем, что при загрузке страницы фоновым изображением является рандомная картинка, подгружаемая через 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); } } ?> Прошу прощения за сумбурность описания, надеюсь на вашу помощь.
×
×
  • 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