상하단 색상 바꾸기 : 기본처리 + hook처리
http://wittazzurri.phps.kr/gnu_board 처럼
그누 기본설정에서 상하단 색상 및 스크롤바를 쉽게 스타일링하는 방법입니다. pc모드만 설명합니다.
[code]
<style>
#hd, #ft { background-color:#003152; }
#tnb { border-bottom:1px solid #204B68; }
#hd_sch #sch_stx { background-color:#00253d; }
#hd_sch #sch_submit { background-color:#001f33; }
#ft_copy { border-top:1px solid #204B68; }
body::-webkit-scrollbar { width:10px; height:10px; }
body::-webkit-scrollbar-thumb { background-color:#003152; }
body::-webkit-scrollbar-track { background-color:#ffffff; }
</style>
[/code]
그런데 이건 코어문서 증 head 에 낑궈야 하니까 아래처럼 hook 으로 처리하는 것이 좋습니다.
head 의 가장 마지막에 css 를 동적으로 보태줍니다.
아래코드를 php 파일로 저장하고 extend 디렉토리로 업로드합니다.
[code]
<?php
if (!defined('_GNUBOARD_')) exit;
add_event('tail_sub', function() { echo "
<script>
document.querySelector('head').innerHTML = document.querySelector('head').innerHTML + `
<style>
#hd, #ft { background-color:#003152; }
#tnb { border-bottom:1px solid #204B68; }
#hd_sch #sch_stx { background-color:#00253d; }
#hd_sch #sch_submit { background-color:#001f33; }
#ft_copy { border-top:1px solid #204B68; }
body::-webkit-scrollbar { width:10px; height:10px; }
body::-webkit-scrollbar-thumb { background-color:#003152; }
body::-webkit-scrollbar-track { background-color:#ffffff; }
</style>
`;
</script>
"; });
[/code]
하지만 이리되면 body 마감 바로 앞에서 스크립트가 보여지므로 style 만 head 마지막에 낑구고
본인은 찌그러지는 것이 소스에서는 더 깨끗합니다. 일종의 눈속임이지만요.
[code]
<?php
if (!defined('_GNUBOARD_')) exit;
add_event('tail_sub', function() { echo "
<script id='addClassScript'>
document.querySelector('head').innerHTML = document.querySelector('head').innerHTML + `
<style>
#hd, #ft { background-color:#003152; }
#tnb { border-bottom:1px solid #204B68; }
#hd_sch #sch_stx { background-color:#00253d; }
#hd_sch #sch_submit { background-color:#001f33; }
#ft_copy { border-top:1px solid #204B68; }
body::-webkit-scrollbar { width:10px; height:10px; }
body::-webkit-scrollbar-thumb { background-color:#003152; }
body::-webkit-scrollbar-track { background-color:#ffffff; }
</style>
`;
document.querySelector('#addClassScript').remove();
</script>
"; });
[/code]
<style> 안의 내용물은 css 파일로 만들고 링킹스타일시트로 처리해도 결과는 동일합니다.
댓글 4개
좋은 팁 감사 합니다.
@들레아빠 좋은 댓글 감사합니다
감사합니다
@너나잘해
감사합니다
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4426 | ||
| 2454 |
|
1년 전 | 1125 | |
| 2453 | 1년 전 | 1057 | ||
| 2452 | 1년 전 | 1624 | ||
| 2451 | 1년 전 | 1156 | ||
| 2450 | 1년 전 | 962 | ||
| 2449 | 1년 전 | 1340 | ||
| 2448 | 1년 전 | 886 | ||
| 2447 | 1년 전 | 1342 | ||
| 2446 | 1년 전 | 1417 | ||
| 2445 | 1년 전 | 1132 | ||
| 2444 | 1년 전 | 1286 | ||
| 2443 | 1년 전 | 1682 | ||
| 2442 | 1년 전 | 1491 | ||
| 2441 | 1년 전 | 1074 | ||
| 2440 | 1년 전 | 1180 | ||
| 2439 | 1년 전 | 4622 | ||
| 2438 | 1년 전 | 1081 | ||
| 2437 | 1년 전 | 1120 | ||
| 2436 | 1년 전 | 930 | ||
| 2435 | 1년 전 | 1563 | ||
| 2434 | 1년 전 | 1457 | ||
| 2433 | 1년 전 | 1022 | ||
| 2432 |
|
1년 전 | 613268 | |
| 2431 |
|
1년 전 | 1099 | |
| 2430 |
|
1년 전 | 1708 | |
| 2429 | 1년 전 | 1314 | ||
| 2428 | 1년 전 | 1273 | ||
| 2427 | 1년 전 | 1151 | ||
| 2426 | 1년 전 | 1113 | ||
| 2425 |
뽕엄능브라
|
1년 전 | 1235 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기