테스트 사이트 - 개발 중인 베타 버전입니다

반응형페이징!

· 10년 전 · 1473 · 14

반응형웹만들때 페이징때문에 고민하셨죠? 간편하게 제가 하나만들었습니다ㅎ

 

[code]

<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.js"></script> 

<style type="text/css">

.paging{color:#555;padding:0;}

.paging li{list-style:none;}

.paging li{line-height:25px; cursor:default; text-align:center; width:25px; height:25px; display:inline-block; font-size: 12px; font-weight:bold; color:#333;}

.paging .pg:hover{cursor:pointer; text-decoration: underline}

.paging .current{color:#FF3636; cursor:default !important; text-decoration:none !important;}

.first, .pre, .next, .last{color:#888 !important;}

.first, .last{letter-spacing:-3px;}

.active{color:#333 !important; cursor:pointer !important;}

</style>

 

<script type="text/javascript">

 

window.onload = function() {

var n = 0,

    c  = 35 , // 전체페이지(35페이지)

    w = 27 , //페이지표시 1개의 가로사이즈값

    current = 1; // 현재페이지(1페이지)

 

/* 페이지클릭시 */

$(document).delegate('.pg','click',function(e){

current = parseInt($(this).text());

$('.pg').removeClass('current');$(this).addClass('current'); // 페이지 클릭시 추가되는 클래스(current)

});

 

/* 맨앞, 앞, 뒤, 맨뒤 버튼 클릭시 */

$(document).delegate('.first, .pre, .next, .last','click',function(e){

var x = Math.floor((parseInt($('.paging').css('width'))-w*4)/w);

if(x > 10){x=10;}

if(n >= 1){

if($(this).is('.first')){current=1;paging();}

if($(this).is('.pre')){current=n-x+1;paging();}

if(c > n+x){

if($(this).is('.next')){current=n+x+1;paging();}

if($(this).is('.last')){current=c;paging();}

}

});

    

/* 맨앞, 앞, 뒤, 맨뒤 버튼 클릭시 */

function paging(){

var page='<li class="first"><<</li><li class="pre"><</li>';

var x = Math.floor((parseInt($('.paging').css('width'))-w*4)/w);

if(x > 10){x=10;}

n = Math.floor(current/x);

if(n == current/x){n = n*x-x;}else{n = n*x}

for(var i=1; i <= x; i++ ){

if(current == i+n){

page += '<li class="pg current">'+(i+n)+'</li>';

}else{

page += '<li class="pg">'+(i+n)+'</li>';}

if(i == x || i == 10 || i+n == c){$('.paging').html(page+'<li class="next">></li><li class="last">>></li>');

if(n > 1){$('.first, .pre').addClass('active');}  // 맨앞, 앞 활성화시 추가되는 클래스(active)

if(c > n+x){$('.next, .last').addClass('active');}  // 뒤, 맨뒤 버튼 활성화시 추가되는 클래스(active)

break}}

}

 

paging() //웹페이지 불러올시 반응형페이징 함수 작동

 

window.onresize = function(){paging()}  //브라우저 사이즈 조절시 반응형페이징 함수 작동

}

 

</script>

 

<ul class="paging"></ul> <!-- 반응형페이징을 불러올 위치 -->

 

[/code]

군인신분으로 사이버지식정보방에서 만든거라 보안상 파일업로드가 안되므로 글로 올리는점 양해바랍니다.

 

http://sir.co.kr/bbs/board.php?bo_table=cm_free&wr_id=1113337

 

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 14개

얼마든지요^^ㅎ;
오~좋은 것 같아요~잘 쓰겠습니다~
10년 전
잘 쓰겠습니다. 군인이신데 바쁜 와중에도 좋은 자료를 올려주셨네요.
28일에 전역했어요^^ㅋ;

게시글 목록

번호 제목
20215
20214
20213
20212
28362
20211
20210
20209
20208
20207
20206
20205
20204
20203
20202
20201
20200
20199
JavaScript 계산기
20198
20197
20196
20195
20194
20193
20192
20191
20190
20189
20188
28361
20187
20186
20185
20184
20183
20182
20181
20180
20179
20177
8183
31027
8181
20176
20175
20174
20173
20172
20171
20170
20169
20168
20156
20154
20153
20152
8177
20151
20149
20148
20147
20146
20145
20144
20143
20142
20141
20140
20139
20137
20135
20134
20133
20129
20128
20126
8172
20123
20122
20121
20117
20116
20115
20114
20113
20112
20111
20110
20109
20108
20107
20106
20104
20103
20102
20101
31024
20100
20099
20098