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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<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>
</head>
<body>
<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>
</body>
</html>
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. 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.
We are Recommending you
- JQuery Remove All Numbers from String Example
- How to Download File using JQuery?
- Laravel JQuery UI Autocomplete Ajax Search Example
- How to Check Atleast One Checkbox is Checked or Not in JQuery?
- JQuery - How to Get X and Y Position of an Element on Click Event?
- Jquery Moment Convert String to Date Example
- JQuery Moment JS Subtract Seconds to Datetime Example
- JQuery Moment Add Hours to Datetime Example
- How to Remove Key Value from Array using JQuery?
- How to Remove Duplicate Value from Array in JQuery?
- How to Call AngularJS Controller Function in JQuery?
- JQuery Hide and Show Password using Eye Icon Example
- How to Check Object is Empty or Not in JQuery?
- Autocomplete with Images and Custom HTML Code in Jquery UI?