ItSolutionStuff.com

How to Scroll to Top of Div in Angular?

By Hardik Savani • May 2, 2024
Angular

Are you looking for example of scroll to top of div angular. i explained simply step by step angular scroll to top of div. i explained simply step by step angular scroll to top of div slow. you can understand a concept of angular scroll to top smooth example. Follow bellow tutorial step of angular scroll to top of div on button click.

In this example, i will give you very simple example of how to scroll to top of div element in angular application. you can scroll to top smooth 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 app.

you might need to auto scroll top or click to button scroll top for chat app or other task. you can easily do it using bellow simple example.

Let's see bellow preview and example code:

Preview:

Update Ts File: src/app/app.component.ts

import { Component } from '@angular/core';

import { interval as observableInterval } from "rxjs";

import { takeWhile, scan, tap } from "rxjs/operators";

@Component({

selector: 'my-app',

templateUrl: './app.component.html',

styleUrls: [ './app.component.css' ]

})

export class AppComponent {

name = 'Angular';

scrollToElement(el): void {

const duration = 600;

const interval = 5;

const moveEl = el.scrollTop * interval / duration;

observableInterval(interval).pipe(

scan((acc, curr) => acc - moveEl, el.scrollTop),

tap(position => el.scrollTop = position),

takeWhile(val => val > 0)).subscribe();

}

}

Update HTML File: src/app/app.component.html

<h1>How to Scroll to Bottom of Div Element in Angular - ItSolutionStuff.com</h1>

<div #target>

Lorem, ipsum dolor sit amet consectetur adipisicing elit.

Libero ea tempora voluptatibus iusto maiores fuga? Tempore assumenda aspernatur

facilis et dolorum iusto maiores esse, earum laboriosam nostrum totam in

accusantium?

Lorem, ipsum dolor sit amet consectetur adipisicing elit.

Libero ea tempora voluptatibus iusto maiores fuga? Tempore assumenda aspernatur

facilis et dolorum iusto maiores esse, earum laboriosam nostrum totam in

accusantium?

Lorem, ipsum dolor sit amet consectetur adipisicing elit.

Libero ea tempora voluptatibus iusto maiores fuga? Tempore assumenda aspernatur

facilis et dolorum iusto maiores esse, earum laboriosam nostrum totam in

accusantium?

Lorem, ipsum dolor sit amet consectetur adipisicing elit.

Libero ea tempora voluptatibus iusto maiores fuga? Tempore assumenda aspernatur

facilis et dolorum iusto maiores esse, earum laboriosam nostrum totam in

accusantium?

Lorem, ipsum dolor sit amet consectetur adipisicing elit.

Libero ea tempora voluptatibus iusto maiores fuga? Tempore assumenda aspernatur

facilis et dolorum iusto maiores esse, earum laboriosam nostrum totam in

accusantium?

</div>

<button (click)="scrollToElement(target)">Click</button>

Update Css File: src/app/app.component.css

div{

height: 200px;

overflow: scroll;

}

Now you can check it.

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Check All and Uncheck All Checkboxes in Angular?

Read Now →

How to Use Jquery Datatable in Angular?

Read Now →

Angular Image Upload with Crop, Zoom, Scale, Preview Tutorial

Read Now →

How to Install and Use CKEditor in Angular?

Read Now →

Angular 9/8 Multiselect Dropdown Example

Read Now →

Angular 9/8 Custom Directives Example

Read Now →

Angular Window Scroll Event Example

Read Now →

Angular LowerCase Pipe Example | LowerCase Pipe in Angular

Read Now →

Angular Toggle a Div on Button Click Example

Read Now →