Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- index.php
- <!DOCTYPE html>
- <html>
- <head>
- <title>Postagens</title>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
- <!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />-->
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
- </head>
- <body>
- <div class="container">
- <h1 align="center">Postagens</a></h1>
- <hr>
- <br />
- <div id="load_data"></div>
- <div id="load_data_message"></div>
- <br />
- <br />
- <br />
- <br />
- <br />
- <br />
- </div>
- </body>
- </html>
- <script>
- $(document).ready(function(){
- var limit = 9;
- var start = 0;
- var action = 'inactive';
- function load_country_data(limit, start)
- {
- $.ajax({
- url:"fetch.php",
- method:"POST",
- data:{limit:limit, start:start},
- cache:false,
- success:function(data)
- {
- $('#load_data').append(data);
- if(data == '')
- {
- $('#load_data_message').html("<button type='button' class='btn btn-info'>Não foram encontradas novas publicações</button>");
- action = 'active';
- }
- else
- {
- $('#load_data_message').html("<button type='button' class='btn btn-warning'>Carregando mais publicações, aguarde....</button>");
- action = "inactive";
- }
- }
- });
- }
- if(action == 'inactive')
- {
- action = 'active';
- load_country_data(limit, start);
- }
- $(window).scroll(function(){
- if($(window).scrollTop() + $(window).height() > $("#load_data").height() && action == 'inactive')
- {
- action = 'active';
- start = start + limit;
- setTimeout(function(){
- load_country_data(limit, start);
- }, 1000);
- }
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement