지운아빠

SIR 메인 HOT SKIN/BUILDER 효과 순차롤링 최신글

팁이라기보단 SIR 에 실제 쓰인 그대로를 옮겨봅니다.
주의! doctype 혹은 기타 css 충돌 등으로 100% 실행되지 않을 수 있습니다. 자신의 사이트에 맞춰서 변경해 쓰세요.
 
1. 최근게시물을 불러올 자리 마크업
dtd html5 이시면 section 을 그대로 사용하셔도 되지만, 아닌 경우 section 을 div 로 변경하고 사용하세요.
<section id='i_hot'>
    <h2><span></span>최근 뜨는 스킨</h2>
    <ul>
        <li id='i_hot_skin'>
            <h3><span></span>스킨</h3>
            최근게시물 불러오는 자리
            <div><a href='<?=$g4['path']?>/bbs/board.php?bo_table=g4_skin'><span></span>더보기</a></div>
        </li>
        <li id='i_hot_bd'>
            <h3><span></span>빌더</h3>
            최근게시물 불러오는 자리
            <div><a href='<?=$g4['path']?>/bbs/board.php?bo_table=g4_builder'><span></span>더보기</a></div>
        </li>
    </ul>
</section>

2. 최근게시물 스킨
latest.skin.php 로 만들 소스
<ol>
<?
//for 문 자리 : 기본 베이직 최근게시물 스킨을 참조해서 코드를 넣으세요.
?>
    <li>
        <a href='<?=$list[$i]['href']?>'><span class='i_hot_title'><?=$list[$i]['subject']?></span></a>
        <span class='i_senskin_author'><?=$list[$i]['tmp_name']?></span>  
        <span class='i_senskin_date'><?=$date?></span>   
    </li>
<?
//for 문 끝나는 자리
?>
</ol>

3. CSS
<style>
#i_hot {clear:both;position:relative;margin-bottom:5px;width:100%;height:225px;background:url('../img/index.png') #000 0 -190px;zoom:1}
#i_hot:after {display:block;visibility:hidden;clear:both;height:0;content:""}
#i_hot h2, #i_hot h3 {width:0;height:0;overflow:hidden}
#i_hot ul {position:relative}
#i_hot ul li {position:relative;float:left;padding-top:80px;padding-left:47px;width:393px}
#i_hot ul li ol {list-style:none}
#i_hot ul li ol li {display:none;float:none;padding:0;padding-top:4px;height:26px;width:auto}
#i_hot ul li ol li span {display:inline-block}
#i_hot ul li ol li .i_hot_title {margin-right:10px;width:230px;height:13px;color:#7aa6c7;vertical-align:middle;overflow:hidden}
#i_hot ul li ol li .i_hot_author {margin-right:5px;width:82px;color:#8596a2;text-align:center}
#i_hot ul li ol li .i_hot_date {width:50px;color:#8596a2;text-align:center}
#i_hot #i_hot_skin div {position:absolute;top:50px;left:130px;width:60px;height:20px}
#i_hot #i_hot_skin div span {display:block;position:absolute;top:0;left:0;width:60px;height:20px;background:url('../img/index.png') -130px -240px}
#i_hot #i_hot_bd div {position:absolute;top:50px;left:120px;width:60px;height:20px}
#i_hot #i_hot_bd div span {display:block;position:absolute;top:0;left:0;width:60px;height:20px;background:url('../img/index.png') -560px -240px}
</style>
 
4. jquery
jquery 는 하단에 넣으시기 바랍니다.
<script>
$(document).ready(function(){
    // ///////////SENSATIONAL SKIN 롤링
    var $intervalll = 0; // 롤링 간격 설정
    for (var i=1; i<6; i++ ) {
        if (i > 1) { $intervalll = $intervalll + 1000; } // 첫 롤링은 바로 실행
        $('#i_hot ul li ol li:nth-child('+i+')').delay($intervalll).slideDown('fast');  
    }
});
</script>
 
5. 사용된 이미지
이미지에서 해당부분만 잘라내서 사용하세요.
이 이미지를 그대로 사용하지 않을 경우 수정해야 하는 부분
#i_hot {clear:both;position:relative;margin-bottom:5px;width:100%;height:225px;background:url('../img/index.png') #000 0 -190px;zoom:1}
#i_hot #i_hot_skin div span {display:block;position:absolute;top:0;left:0;width:60px;height:20px;background:url('../img/index.png') -130px -240px}
#i_hot #i_hot_bd div span {display:block;position:absolute;top:0;left:0;width:60px;height:20px;background:url('../img/index.png') -560px -240px}
하늘색 부분을 자신의 사이트 경로에 맞게 수정하세요.
 
index.png

클릭하시면 원본 사이즈로 다운받으실 수 있습니다. ㅎㅎㅎ
|

댓글 9개

지운아빠님 기대~!! 저메인에있는거를해보고 싶어서요
아 모르겠어요 ㅠㅠ 최근게시물 스킨하나만 만들어주심안될까요 ㅠㅠ 부탁좀드릴께요
지운아빠님의 강의를 보고 한달 정도는 노력해 보시고 하셔야 하는 말씀아닐까 싶네요
보고도 잘 모르겠어요..ㅎㅎ지운아빠님 강의 어디서 보죠?
<span></span>은 뭐죵?;;
이렇게 저렇게 만져보세요. ㅎㅎ
여튼 좋은 소스 공개해주셔서 감사합니다 ㅠ
걍 소스보기만 해도 나오는 건데요 뭘;;
어디에 어떻게 들어가있다만 정리한 겁니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
13년 전 조회 2,955
13년 전 조회 2,855
13년 전 조회 2,147
13년 전 조회 1,463
13년 전 조회 4,610
13년 전 조회 2,451
13년 전 조회 2,923
13년 전 조회 1,305
13년 전 조회 1,238
13년 전 조회 2,406
13년 전 조회 1,403
13년 전 조회 2,635
13년 전 조회 2,280
13년 전 조회 2,110
13년 전 조회 1,967
13년 전 조회 5,416
13년 전 조회 3,804
13년 전 조회 2,153
13년 전 조회 1,229
13년 전 조회 1,891
13년 전 조회 2,383
13년 전 조회 2,111
13년 전 조회 1,903
13년 전 조회 1,596
13년 전 조회 1,221
13년 전 조회 1,653
13년 전 조회 1,496
13년 전 조회 1,319
13년 전 조회 1,303
13년 전 조회 1,770
13년 전 조회 1,214
13년 전 조회 1,167
13년 전 조회 1,249
13년 전 조회 1,190
13년 전 조회 1,804
13년 전 조회 1,511
13년 전 조회 3,023
13년 전 조회 1,263
13년 전 조회 1,530
13년 전 조회 2,316
13년 전 조회 1,462
13년 전 조회 1,377
13년 전 조회 1,363
13년 전 조회 1,466
13년 전 조회 1,863
13년 전 조회 1,431
13년 전 조회 1,460
13년 전 조회 1,772
13년 전 조회 1,582
13년 전 조회 2,208
13년 전 조회 1,660
13년 전 조회 1,206
13년 전 조회 1,808
13년 전 조회 5,141
13년 전 조회 1,457
13년 전 조회 1,975
13년 전 조회 3,596
13년 전 조회 2,205
13년 전 조회 2,540
13년 전 조회 2,164
13년 전 조회 2,824
13년 전 조회 2,245
13년 전 조회 1,847
13년 전 조회 1,304
13년 전 조회 1.4만
13년 전 조회 2,079
13년 전 조회 4,203
13년 전 조회 1,834
13년 전 조회 1,279
13년 전 조회 1,443
13년 전 조회 1,294
13년 전 조회 1,442
13년 전 조회 5,228
13년 전 조회 7,027
13년 전 조회 1,707
13년 전 조회 5,558
13년 전 조회 1,820
13년 전 조회 1,368
13년 전 조회 1,530
13년 전 조회 1,333
13년 전 조회 1,241
13년 전 조회 1,459
13년 전 조회 1,603
13년 전 조회 1,314
13년 전 조회 1,373
13년 전 조회 1,808
13년 전 조회 8,357
13년 전 조회 3,567
13년 전 조회 1,288
13년 전 조회 1,855
13년 전 조회 1,801
13년 전 조회 1,893
13년 전 조회 5,853
13년 전 조회 1,277
13년 전 조회 1,799
13년 전 조회 3,246
13년 전 조회 2,853
13년 전 조회 2,527
13년 전 조회 2,705
13년 전 조회 3,628