플래쉬 뒤로 메뉴 숨는 현상 도와주세요 정보
플래쉬 뒤로 메뉴 숨는 현상 도와주세요
본문
http://www.sir.co.kr/bbs/tb.php/g4_qa/23961
아직 이문제가 해결이 되지 않고 있습니다..
배너 최신겔러리로 구현을 하고 있습니다
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width="80%" cellpadding=0 cellspacing=0 border=0><tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- <tr><td height=10></td></tr> -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td align="center">
<?
echo "<a href='{$list[$i][wr_1]}' target='{$list[$i][wr_2]}'>";
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image)) { ?>
<img src='<?=$g4[path]?>/data/file/<?=$bo_table?>/<?=$image?>' width='645' border='0'></a><br>
<?}
else if(preg_match("/\.(swf|wmv|asf)$/i", $image))
{ echo"<embed src='$g4[path]/data/file/$bo_table/$image' width='645'>";}
else{
echo"<img src='$latest_skin_path/img/noimage.gif' width='645' border='0'></a><br>";
}?>
</td>
</tr>
<tr><td height=7></td></tr>
<? } ?>
</table>
</td></tr></table>
사진은 브레스님 홈에나타나는 현상인데 저도 똑같습니다..
아직 이문제가 해결이 되지 않고 있습니다..
배너 최신겔러리로 구현을 하고 있습니다
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table width="80%" cellpadding=0 cellspacing=0 border=0><tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<!-- <tr><td height=10></td></tr> -->
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td align="center">
<?
echo "<a href='{$list[$i][wr_1]}' target='{$list[$i][wr_2]}'>";
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image)) { ?>
<img src='<?=$g4[path]?>/data/file/<?=$bo_table?>/<?=$image?>' width='645' border='0'></a><br>
<?}
else if(preg_match("/\.(swf|wmv|asf)$/i", $image))
{ echo"<embed src='$g4[path]/data/file/$bo_table/$image' width='645'>";}
else{
echo"<img src='$latest_skin_path/img/noimage.gif' width='645' border='0'></a><br>";
}?>
</td>
</tr>
<tr><td height=7></td></tr>
<? } ?>
</table>
</td></tr></table>
사진은 브레스님 홈에나타나는 현상인데 저도 똑같습니다..
어떻게 안될까요..
댓글 전체
{ echo"<embed src='$g4[path]/data/file/$bo_table/$image' width='645'>";}
{ echo"<embed src='$g4[path]/data/file/$bo_table/$image' width='645' wmode='transparent'></embed>";}
이렇게 고치면 될듯한데...
{ echo"<embed src='$g4[path]/data/file/$bo_table/$image' width='645' wmode='transparent'></embed>";}
이렇게 고치면 될듯한데...
허걱 열라 찾았는데 됩니다 감사~!
width='645' ....
height='....' 도 정해주시면 좋을텐데...
height='....' 도 정해주시면 좋을텐데...
"<embed 대신
<img를 쓰면 안 되나요?
<img를 쓰면 안 되나요?
고맙습니다. 궁금했었는데...^^