글씨색깔이 변경이 안되네요. 정보
글씨색깔이 변경이 안되네요.본문
수고하십니다.
아래 소스 글씨 색깔이 변경이 안되는데...답변좀 부탁드립니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<script type="text/javascript" src="<?=$latest_skin_path?>/jquery.js"> </script>
<script type="text/javascript">
$(document).ready(function() {
var current = -1;
var elems = new Array();
var elems_i = 0;
$('.items').each(function() {
elems[elems_i++] = $(this);
});
var num_elems = elems_i - 1;
var animate_out = function() {
elems[current].animate({ top: '-100px' }, 'slow', 'linear', animate_in);
}
var animate_out_delay = function() {
setTimeout(animate_out, 5000); /*2000=2초*/
}
var animate_in = function() {
current = current < num_elems ? current + 1 : 0;
elems[current].css('top', '200px').animate({ top: '0px' }, 'slow', 'linear', animate_out_delay);
}
animate_in();
});
</script>
<style type="text/css">
.ticker {
position: relative; /* So we can absolute the .items */
width: 400px;
height: 23px;
overflow: hidden;
border: 0px solid #f0f0f0;
}
.items {
position: absolute;
top: 25px;
margin:5px;
font-family:돋움;
font-size:13px;
font-weight:bold;
color:#8FC427;
}
</style>
<div class="ticker">
<? for ($i=0; $i<count($list); $i++) { ?>
<div class="items"><a href='<?=$list[$i][href]?>'><?=$list[$i][wr_subject]?></a> <font style="font-family:verdana; font-size:0px; color:8FC427;">[<?=$list[$i][wr_comment]?>]</font> </div>
<? } ?>
</div>
아래 소스 글씨 색깔이 변경이 안되는데...답변좀 부탁드립니다.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<script type="text/javascript" src="<?=$latest_skin_path?>/jquery.js"> </script>
<script type="text/javascript">
$(document).ready(function() {
var current = -1;
var elems = new Array();
var elems_i = 0;
$('.items').each(function() {
elems[elems_i++] = $(this);
});
var num_elems = elems_i - 1;
var animate_out = function() {
elems[current].animate({ top: '-100px' }, 'slow', 'linear', animate_in);
}
var animate_out_delay = function() {
setTimeout(animate_out, 5000); /*2000=2초*/
}
var animate_in = function() {
current = current < num_elems ? current + 1 : 0;
elems[current].css('top', '200px').animate({ top: '0px' }, 'slow', 'linear', animate_out_delay);
}
animate_in();
});
</script>
<style type="text/css">
.ticker {
position: relative; /* So we can absolute the .items */
width: 400px;
height: 23px;
overflow: hidden;
border: 0px solid #f0f0f0;
}
.items {
position: absolute;
top: 25px;
margin:5px;
font-family:돋움;
font-size:13px;
font-weight:bold;
color:#8FC427;
}
</style>
<div class="ticker">
<? for ($i=0; $i<count($list); $i++) { ?>
<div class="items"><a href='<?=$list[$i][href]?>'><?=$list[$i][wr_subject]?></a> <font style="font-family:verdana; font-size:0px; color:8FC427;">[<?=$list[$i][wr_comment]?>]</font> </div>
<? } ?>
</div>
댓글 전체
스타일부분에 추가해주시면 될듯한데용~~
.items a{ font-size:13px; color:##8FC427; font-weight:bold; display:none}
.items a:hover{color:#xxxxxx; display:none} < -요긴 취향대로 하시면 될듯~
.items a{ font-size:13px; color:##8FC427; font-weight:bold; display:none}
.items a:hover{color:#xxxxxx; display:none} < -요긴 취향대로 하시면 될듯~