Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

angular HostListener

//import {ElementRef, HostListener } from '@angular/core';

@HostListener('mouseenter') onMouseEnter() {
  this.highlight('yellow');
}

@HostListener('mouseleave') onMouseLeave() {
  this.highlight('');
}

private highlight(color: string) {
  this.el.nativeElement.style.backgroundColor = color;
}
Source by angular.io #
 
PREVIOUS NEXT
Tagged: #angular #HostListener
ADD COMMENT
Topic
Name
7+6 =