js实现分页组件

最近重新温故以前JS的知识,发现有很多东西都忘记了,就打算参考ant design里的分页组件(pagination)来作为一个练习的小Demo组件,尝试着用html、css、js来实现一个分页组件,以下是分组组件的代码,可能没ant design里面的组件功能齐全,但是基本功能都实现出来,虽然说用JS频繁的操作DOM节点消耗的性能比较大,但是这个Demo只是用来温故以前所忘记的一些知识,所以项目要是真的需要用到,最好还是选择目前以搭建好的框架作为最优项。

废话不多说,代码奉上。

pagination.html

\triangleright 注释的代码可以不用管,这是之前设计css样式留下来的,css和js文件都和html文件放在同一层目录下

<html>
    <head>
        <meta charset="UTF-8">
        <title>Pagination</title>
        <link type="text/css" rel="stylesheet" href="./pagination.css">
        <script src="./pagination.js" type="text/javascript"></script>
    </head>
    <body>
        <div id="pagination-box">
            <ul id="pagination-ul">
                <!-- <button id="pagination-btn-left">
                    <i></i>
                </button>
                <li><a>1</a></li>
                <li><a>2</a></li>
                <li><a>3</a></li>
                <button id="pagination-btn-right">
                    <i></i>
                </button> -->
            </ul>
        </div>
    </body>
</html>

pagination.css

\triangleright 这里的css使用了var()函数,我并没有兼容其他浏览器(因为懒),所以要是有样式不显示的话,可能是这个问题,最好用chrome浏览器

:root {
    --btn-border: 1px solid #d9d9d9;
    --li-border: 1px solid #d9d9d9;
    --hover-border: 1px solid #409EFF;
    --hover-color: #409EFF;
}

#pagination-ul {
    width: 100%;
    list-style: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}

#pagination-btn-left, #pagination-btn-right {
    outline: none;
    text-align: center;
    box-sizing: border-box;
    display: block;
    padding: 0;
    border: var(--btn-border);
    background-color: #FFFFFF;
    border-radius: 3px;
}

#pagination-btn-left {
    margin-right: 5px;
}

#pagination-btn-right {
    margin-left: 5px;
}

.isSelect:hover {
    border: var(--hover-border) !important;
}

.isSelect:hover i::before{
    border-color: var(--hover-color) !important;
}

#pagination-btn-left i,
#pagination-btn-right i{
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
}

#pagination-btn-left i::before,
#pagination-btn-right i::before{
    content: "";
    width: 6px;
    height: 6px;
    border-right: var(--btn-border);
    border-bottom: var(--btn-border);
    position: absolute;
    left: 50%;
    top: 50%;
}

#pagination-btn-left i::before{
    transform: translate(-30%, -50%) rotate(135deg);
}

#pagination-btn-right i::before{
    transform: translate(-50%,-50%) rotate(-45deg);
    border-color: #000000;
}

.isSelect i::before {
    border-color: #000000 !important;
}

.noSelect i::before{
    border-color: #d9d9d9 !important;
}


#pagination-ul li {
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border: var(--li-border);
    border-radius: 3px;
    margin: 0px 5px;
    cursor: pointer;
}

#pagination-ul li a{
    color: #000000;    
    cursor: pointer;
}

#pagination-ul li:hover{
    border: var(--hover-border);
}

#pagination-ul li:hover a{
    color: var(--hover-color);
    opacity: 0.8;
}

.li-checked{
    border: var(--hover-border) !important;
    opacity: 1;
}

.a-checked{
    color: var(--hover-color) !important;
    font-weight: 600 !important;
}

pagination.js

\triangleright 这里的页数就三页,你可以在for循环那里增加页码的数量,一般项目都会调用接口来获取数据的总数然后通过展示多少条来作为一页,我这里为了方便就弄了三页,相关代码的优化可能也没有考虑到,毕竟本人比较菜。

window.onload = function(){
    let paginationUlEvent = document.getElementById("pagination-ul");
    let leftButton = document.createElement("button");
    let rightButton = document.createElement("button");
    let leftIcon = document.createElement("i");
    let rightIcon = document.createElement("i");
    let clickIndex = 0;

    leftButton.id = "pagination-btn-left";
    leftButton.style.cursor = "not-allowed";
    leftButton.appendChild(leftIcon);
    paginationUlEvent.appendChild(leftButton);

    for(let j = 1;j<4;j++){
        let li = document.createElement("li");
        let a = document.createElement("a");
        if(j == 1){
           li.className = "li-checked";
           a.className = "a-checked";
        }
        a.innerHTML = j;
        li.appendChild(a);
        paginationUlEvent.appendChild(li);
    }

    rightButton.id = "pagination-btn-right";
    rightButton.className = "isSelect";
    rightButton.style.cursor = "pointer";
    rightButton.appendChild(rightIcon);
    paginationUlEvent.appendChild(rightButton);


   let liEvent = document.getElementsByTagName("li");
   let aEvent = document.getElementsByTagName("a");
   for(let i=0;i<liEvent.length;i++){
       liEvent[i].onclick = function(e){
           removeCheckedClass();
           liEvent[i].className = "li-checked";
           aEvent[i].className = "a-checked";
           clickIndex = i;
           console.log(i,liEvent.length-1)
           switch (i){
               case 0:
               {
                   leftButton.style.cursor = "not-allowed";
                   rightButton.style.cursor = "pointer";
                   leftButton.className = "noSelect";
                   rightButton.className = "isSelect";
               }
               break;
               case (liEvent.length - 1):
               {
                   leftButton.style.cursor = "pointer";
                   rightButton.style.cursor = "not-allowed";
                   leftButton.className = "isSelect";
                   rightButton.className = "noSelect";
               }
               break;
               default:
               {
                   leftButton.style.cursor = "pointer";
                   rightButton.style.cursor = "pointer";
                   leftButton.className = "isSelect";
                   rightButton.className = "isSelect";
               }
           }
       }
   }

   function removeCheckedClass(){
       for(let i = 0;i<liEvent.length;i++){
            if(liEvent[i].className == "li-checked"){
                liEvent[i].className = "";
                aEvent[i].className = "";
            }
       }
   }

   function clickButtonEvent(i){
        removeCheckedClass();
        liEvent[i].className = "li-checked";
        aEvent[i].className = "a-checked";
        clickIndex = i;
        switch (i){
            case 0:
            {
                leftButton.style.cursor = "not-allowed";
                rightButton.style.cursor = "pointer";
                leftButton.className = "noSelect";
                rightButton.className = "isSelect";
            }
            break;
            case (liEvent.length - 1):
            {
                leftButton.style.cursor = "pointer";
                rightButton.style.cursor = "not-allowed";
                leftButton.className = "isSelect";
                rightButton.className = "noSelect";
            }
            break;
            default:
            {
                leftButton.style.cursor = "pointer";
                rightButton.style.cursor = "pointer";
                leftButton.className = "isSelect";
                rightButton.className = "isSelect";
            }
        }
   }

   leftButton.onclick = function () {
       console.log(leftButton.style)
       if(leftButton.style.cursor == "not-allowed"){
           return false;
       }else if(leftButton.style.cursor == "pointer"){
           if(clickIndex <= 0){
               return false;
           }else{
               let index = clickIndex - 1;
               clickButtonEvent(index);
           }
       }
   }

   rightButton.onclick = function () {
       if(rightButton.style.cursor == "not-allowed"){
           return false;
       }else if(rightButton.style.cursor == "pointer"){
           if(clickIndex >= liEvent.length-1){
               return false;
           }else{
               let index = clickIndex + 1;
               clickButtonEvent(index);
           }
       }
   }

}

展示效果如下:


分页组件.gif
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351

推荐阅读更多精彩内容