Created
January 16, 2020 08:00
-
-
Save faruk09/2951b95ae46fd78af91ccbf3d6a9da40 to your computer and use it in GitHub Desktop.
Load More Button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function () { | |
$(".col-md-4").slice(0, 3).show(); | |
$("body").on('click touchstart', '.load-more', function (e) { | |
e.preventDefault(); | |
$(".col-md-4:hidden").slice(0, 3).slideDown(); | |
if ($(".col-md-4:hidden").length == 0) { | |
$(".load-more").css('visibility', 'hidden'); | |
} | |
$('html,body').animate({ | |
scrollTop: $(this).offset().top | |
}, 1000); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container{ | |
margin:30px auto; | |
} | |
.col-md-4{ | |
display:none; | |
} | |
.content{ | |
background-color:#333; | |
height:200px; | |
margin:10px 0; | |
border:1px solid #ccc; | |
} | |
.load-more{ | |
background-color:#000; | |
color:#fff !important; | |
padding:5px 10px; | |
border-radius:4px; | |
font-size:20px; | |
margin:50px 0; | |
display:inline-block; | |
} | |
.load-more:hover{ | |
background-color:blue; | |
text-decoration:none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment