Angular Scroll to Top of Div Element Example
Hi All,
I am going to show you example of angular scroll to top of div. this example will help you angular scroll to element. if you want to see example of angular scroll to element in div then you are a right place. we will help you to give example of scroll to top of div angular. Here, Creating a basic example of scroll to top inside div angular.
you can easily make scroll to top of div element in angular 6, angular 7, angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17 application.
Here, i will give you very simple example of scroll to top in angular. we will take on div with container class. i will add height, width and overflow-y css property. then i will simply add 100 items there and so you can scroll that div easily. bellow that div i will add one button call "Scroll to Top", when you click on it, it will scroll to top.
Let's see that example and bellow preview:
Preview:
src/app/app.component.ts
import { Component, VERSION } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular ' + VERSION.major;
itemList : number[]=[];
constructor(){
for(var i=0; i<100; i++){
this.itemList.push(+i)
}
}
scrollToTop(el) {
el.scrollTop = 0;
}
}
src/app/app.component.html
<h1>Angular Scroll to Top of Div Example - ItSolutionStuff.com</h1>
<div #container class="container">
<ul>
<li *ngFor="let i of itemList">{{i}}</li>
</ul>
</div>
<button (click)="container.scrollTop = 0">Scroll to Top</button>
src/app/app.component.css
.container{
margin-bottom: 8px;
width: 400px;
background-color: #a1a1a1;
height: 400px;
overflow-y: scroll;
}
Now you can run and check it.
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
- Angular 11/10 ElementRef, ViewChild & QueryList Example
- Angular 11/10 Sweetalert2 Confirm Box Example Tutorial
- How to Scroll to Top of Div in Angular?
- Angular Scroll to Bottom of Div on Click Example
- Angular Uppercase Pipe Example | Uppercase Pipe in Angular
- Angular 10/9/8 Bootstrap 4 Tooltip Example
- Angular Image Upload Example Tutorial
- Angular Service with Httpclient Example
- How to Get User Agent in Angular?
- How To Get Client IP Address in Angular?