An open API service indexing awesome lists of open source software.

https://github.com/gueff/pagshrink

jquery plugin for Bootstrap 4: auto shrinks pagination (responsive)
https://github.com/gueff/pagshrink

bootstrap4 javascript jquery jquery-plugin

Last synced: 6 months ago
JSON representation

jquery plugin for Bootstrap 4: auto shrinks pagination (responsive)

Awesome Lists containing this project

README

          

# pagShrink
jquery plugin for Bootstrap 4: auto shrinks pagination (responsive)

## usage

make sure by CSS that all anchor `` items beneath `

  • ` have same dimensions of `width`and `height`.

    _example css_
    ~~~css
    .page-link {
    min-width: 48px !important;
    width: 48px !important;
    height: 35px;
    text-align: center;
    float: left;
    }
    ~~~

    _activate_

    ~~~js
    $('.pagination').pagShrink();
    ~~~

    _html_

    ~~~html


    ~~~