“desplazamiento automático hasta el fondo de Div Angular” Código de respuesta

Scoll a Div to Bottom en Angular

import {..., AfterViewChecked, ElementRef, ViewChild, OnInit} from 'angular2/core'
@Component({
    ...
})
export class ChannelComponent implements OnInit, AfterViewChecked {
    @ViewChild('scrollMe') private myScrollContainer: ElementRef;

    ngOnInit() { 
        this.scrollToBottom();
    }

    ngAfterViewChecked() {        
        this.scrollToBottom();        
    } 

    scrollToBottom(): void {
        try {
            this.myScrollContainer.nativeElement.scrollTop = this.myScrollContainer.nativeElement.scrollHeight;
        } catch(err) { }                 
    }
}
Dark Dogfish

desplazamiento automático hasta el fondo de Div Angular

<div style="overflow: scroll; height: xyz;" #scrollMe [scrollTop]="scrollMe.scrollHeight">
    <div class="..." 
        *ngFor="..."
        ...>  
    </div>
</div>
Precious Panther

Desplazamiento automático hasta el fondo de Div Angular

Angular scroll from bottom to top
Selfish Spider

Respuestas similares a “desplazamiento automático hasta el fondo de Div Angular”

Preguntas similares a “desplazamiento automático hasta el fondo de Div Angular”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código