simplePagination.js es un complemento jQuery que proporciona una paginación simple pero totalmente personalizable en nuestros sitios web. Es un sistema de paginación basado en jQuery robusto y altamente personalizable para su contenido largo para mejorar la legibilidad de la página web. Sus principales características se enumeran a continuación.
- Puede paginar cualquier grupo de elementos HTML en la página web.
- Es fácil de usar y se puede usar para generar dinámicamente enlaces de paginación.
- Es altamente personalizable.
Ahora háganos saber cómo integrar este complemento de paginación en nuestro sitio web.
Primero incluya estos enlaces CDN en su archivo html.
<script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script>
<script src=”https://cdnjs.cloudflare.com /ajax/libs/simplePagination.js/1.6/jquery.simplePagination.min.js”></script>
<link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/simplePagination. js/1.6/simplePagination.min.css”>
Ejemplo:
HTML
<!DOCTYPE html> <> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/simplePagination.js/1.6/jquery.simplePagination.min.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simplePagination.js/1.6/simplePagination.min.css"> <style type="text/css"> body { font-size: 14px; line-height: 18px; background: green; } .item { border: 1px solid #EEE; background: #FFF; margin-bottom: 10px; padding: 10px; } #pagination { margin-left: 500px; } </style> </head> <body> <div class="wrapper"> <div class="item"> <h4>Data Structure and Algorithm</h4> <p> Learn Data Structures & Algorithms at your own pace to prepare for top product-based companies like Amazon, Uber, Adobe, etc. It contains 200+ algorithmic coding problems, Lifetime access to the Course, Premium Lecture videos by Mr. Sandeep Jain (CEO & Founder, GeeksforGeeks) </p> </div> <div class="item"> <h4>Fork Java</h4> <p>Specially designed free Java course for beginners which strengthens your base in the language from scratch. This course is specially designed for the Java apprentices who want to hone their skills in Java for Coding Interviews and Competitive Programming. No matter if you are a school student or college student, if you have the zeal of programming, this is the right time to start. </p> </div> <div class="item"> <h4> 11 Weeks Workshop on Data Structures and Algorithms </h4> <p> As these are live sessions, every week you will be interacting with the top industry expert where you will learn how they implement DSA in real-life scenarios. Not just this, but you will also be able to understand all the concepts of DSA in-depth. In addition, weekly Q/A sessions will be conducted to resolve your queries and discuss questions asked most frequently in interview of product-based companies. </p> </div> <div class="item"> <h4>Data Structure and Algorithm</h4> <p> Learn Data Structures & Algorithms at your own pace to prepare for top product-based companies like Amazon, Uber, Adobe, etc. It contains 200+ algorithmic coding problems, Lifetime access to the Course, Premium Lecture videos by Mr. Sandeep Jain (CEO & Founder, GeeksforGeeks) </p> </div> <div class="item"> <h4>Fork Java</h4> <p> Specially designed free Java course for beginners which strengthens your base in the language from scratch. This course is specially designed for the Java apprentices who want to hone their skills in Java for Coding Interviews and Competitive Programming. No matter if you are a school student or college student, if you have the zeal of programming, this is the right time to start. </p> </div> <div class="item"> <h4> 11 Weeks Workshop on Data Structures and Algorithms </h4> <p> As these are live sessions, every week you will be interacting with the top industry expert where you will learn how they implement DSA in real-life scenarios. Not just this, but you will also be able to understand all the concepts of DSA in-depth. In addition, weekly Q/A sessions will be conducted to resolve your queries and discuss questions asked most frequently in interview of product-based companies. </p> </div> <div class="item"> <h4>Data Structure and Algorithm</h4> <p> Learn Data Structures & Algorithms at your own pace to prepare for top product-based companies like Amazon, Uber, Adobe, etc. It contains 200+ algorithmic coding problems, Lifetime access to the Course, Premium Lecture videos by Mr. Sandeep Jain (CEO & Founder, GeeksforGeeks) </p> </div> <div class="item"> <h4>Fork Java</h4> <p> Specially designed free Java course for beginners which strengthens your base in the language from scratch. This course is specially designed for the Java apprentices who want to hone their skills in Java for Coding Interviews and Competitive Programming. No matter if you are a school student or college student, if you have the zeal of programming, this is the right time to start. </p> </div> <div class="item"> <h4> 11 Weeks Workshop on Data Structures and Algorithms </h4> <p> As these are live sessions, every week you will be interacting with the top industry expert where you will learn how they implement DSA in real-life scenarios. Not just this, but you will also be able to understand all the concepts of DSA in-depth. In addition, weekly Q/A sessions will be conducted to resolve your queries and discuss questions asked most frequently in interview of product-based companies. </p> </div> </div> <div id="pagination"></div> <script> $(".wrapper .item").slice(4).hide(); $('#pagination').pagination({ // Total number of items present // in wrapper class items: 9, // Items allowed on a single page itemsOnPage: 4, onPageClick: function (noofele) { $(".wrapper .item").hide() .slice(4*(noofele-1), 4+ 4* (noofele - 1)).show(); } }); </script> </body> </html>
Producción: