Здравствуйте,
Есть страница
http://chopt.ru/ViewGood59640_.html
Под большой фоткой находиться маленькая превьюшка, щелкнув по которой открывается ее большая фотка, фотки там огромные и они больше размера монитора..
В ИЕ и Мазиле фотка вертикальная прокрутка не появляется, а должна обязательно там быть, потому что из-за этого фотка пользователю показывается не целиком, а обрезанная…
Помогите плс, день убил, а так и не смог не чего сделать, scrollbars=yes не помогло…
Вот код вывода изображения:
"<img id=\"\" name='Image$Listener".$row[good_id]."' onClick=\"openImageinWindow( this,$x_full,$y_full,'Goods','$img_title','');\" onLoad=\"$border $effects[2]\" onMouseOver=\"$effects[0]\" onMouseOut=\"$effects[1]\"",
$imgtag
);
}
else
{
$tag = $a_img_tags[0];
$x= $tag[img_x];
$y= $tag[img_y];
$nx= $x;
$ny= $y;
if( $maxwidth && $x> $maxwidth)
{
$nx= $maxwidth;
$ny= $nx* $y/ $x;
$x= $nx;
$y= $ny;
}
if( $maxheight && $y> $maxheight)
{
$ny= $maxheight;
$nx= $ny* $x/ $y;
$x= $nx;
$y= $ny;
}
$x = (int) ($x * 1.5);
$y = (int) ($y * 1.5);
$image_src = "/viewImg.php?img_id=$img_id&width=$x&height=$y&tabname=Goods";
$imgtag = str_replace(
"<img",
"<A class=olive href=\"ViewGood{$gid}_$row[item_id].html\"><img name='Image$Listener".$row[good_id]."' onClick=\"location.assign('ViewGood{$gid}_$row[item_id].html')\" onLoad=\"$border $effects[2]\" onMouseOut=\"$effects[1]\" onmouseover=\"productPreview(this, '$image_src', $row[good_id])\"",
$imgtag
);
$imgtag .= '</A>';
}
}
}
break;
case 'an':
if ($set["new_win"] == 2)
{
$imgtag = str_replace(
"<img",
"<img name='Image$Listener".$row[good_id]."' onClick=\"window.open('View_nw_Good$id.html','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,height=0,width=0')\" onLoad=\"$border $effects[2]\" onMouseOver=\"$effects[0]\" onMouseOut=\"$effects[1]\"",
$imgtag
);
}
else
{
$imgtag = str_replace(
"<img",
"<img name='Image$Listener".$row[good_id]."' onClick=\"location.assign('ViewGood{$id}_$row[item_id].html')\" onLoad=\"$border $effects[2]\" onMouseOver=\"$effects[0]\" onMouseOut=\"$effects[1]\"",
$imgtag
);
}
break;
}
$e->setVar( Image, $imgtag);
}
}
$e->setVar( Name, $row[ g_name], $row[meta_def]);