따라다니는 배너 관련 문의좀 드리겠습니다.
본문
http://sir.kr/g5_tip/2660?sfl=wr_subject%7C%7Cwr_content&stx=%EB%B0%B0%EB%84%88
해당 게시물의 따라다니는 배너를 사용 중입니다.
근데,
이게 어떤 페이지를 가도 계속 따라다니게 되어있는데요..
메인페이지 에서만 따라다니고,
그외의 다른 화면에서는 이미지가 따라다니지 않고 고정되게 하고 싶습니다.
어떤 방법이 있을까요????
(그누보드 순정 기준입니다)
아래는 해당 소스입니다.
<!--
ver1.0 150421 @_untitle_d
http://untitled.untitle311apyxry1w48.com/5yj67ft
-->
<?php
$tmpWidth = '170';
$tmpMarginBottom = '5';
$tmpBorder = '0';
$arrL = array(
array('#', '/theme/basic1/img/left/center.gif', '상담전화', '_blank'),
//array('#', '/theme/basic1/img/left/call.png', '상담전화', '_blank'),
//array('#', '/theme/basic1/img/left/call.png', '상담전화', '_blank'),
array('#', '/theme/basic1/img/left/account.png', '계좌정보' ,'_blank'),
);
$arrR = array(
array('/bbs/board.php?bo_table=catalog', '/theme/basic1/img/right/cata.gif', '카달로그', '_self'),
//array('#', '/theme/basic1/img/left/call.png', 'untitled' ,'_blank'),
//array('#', '/theme/basic1/img/left/call.png', 'untitled', '_blank'),
array('/bbs/board.php?bo_table=estimate', '/theme/basic1/img/right/right02.jpg', '견적문의', '_self')
);
?>
<script type="text/javascript" src=" <?php echo G5_THEME_JS_URL ?>/follower.js"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
$('#floatR').scrollFollower({
pageAlign:'center',
pageWidth:1000, //컨텐츠 블럭의 폭(필수값)
type:'right',
topMargin:160, //페이지 최상단과의 거리
minTop:80,
margin:5,
speed:500,
easing:'swing',
zindex:10
});
$('#floatL').scrollFollower({
pageAlign:'center',
pageWidth:1000,
type:'left',
topMargin:160,
minTop:-5,
margin:5,
speed:500,
easing:'linear',
zindex:10
});
});
//]]>
</script>
<div id="floatL">
<?php foreach($arrL as $v){ ?>
<div style="margin-bottom:<?=$tmpMarginBottom?>px">
<a href="<?=$v[0]?>" target="<?=$v[3]?>"><img src="<?=$v[1]?>" width="<?=$tmpWidth?>" border="<?=$tmpBorder?>" alt="<?=$v[2]?>"></a>
</div>
<? } ?>
</div>
<div id="floatR">
<?php foreach($arrR as $v){ ?>
<div style="margin-bottom:<?=$tmpMarginBottom?>px">
<a href="<?=$v[0]?>" target="<?=$v[3]?>"><img src="<?=$v[1]?>" width="<?=$tmpWidth?>" border="<?=$tmpBorder?>" alt="<?=$v[2]?>"></a>
</div>
<? } ?>
</div>
!-->
답변 3
tail.php에 아래와 같이 코드를 넣어 보세요.
<?php
if(defined('_INDEX_')) {
include_once(G5_PATH.'/banner_fly.php');
}
?>
메인페이지에서는 그냥 위 소스를 쓰시고
다른페이지에서 쓰실거는
위 소스중 floatL 과 floatR 을 이름 변경후
div 를 위치를 잡으신다음 fixed 주시면 될것 같습니다.
<?php
if(defined('_INDEX_') && !is_mobile()) {
include_once(G5_THEME_PATH.'/skin/banner/banner_fly.php'); // 스크롤 배너
}
?>
답변을 작성하시기 전에 로그인 해주세요.