How to create scroll to top of the page by jquery animate ?
However you want the scrolling process to have animated effect. you have to follow bellow example. in this post you can add button for scrolling top with animate effect. Most of website you can see with one button left side or right side for scrolling top of the page. so, if you want to create on your site then you have to add following jquery code:
Example
<style type="text/css">
#toTopImg{
position: fixed;
bottom: 20px;
left: 20px;
cursor: pointer;
display: none;
z-index: 999999;
background: #5a5a5a none repeat scroll 0 0;
display: block;
padding: 12px 15px;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('body').append('<div id="toTopImg" style="display:none">Top</div>');
$(window).scroll(function () {
if ($(this).scrollTop() != 0) {
$('#toTopImg').fadeIn();
} else {
$('#toTopImg').fadeOut();
}
});
$('#toTopImg').click(function(){
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
</script>

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.