Zdarzenie Angular 2 Hover

198

Czy w nowym frameworku Angular2 ktoś zna właściwy sposób na zawisanie jak zdarzenie?

W Angular1 było ng-Mouseover, ale wydaje się, że nie zostało to przeniesione.

Przejrzałem dokumenty i niczego nie znalazłem.

Ronin
źródło
2
To tylko nadmiar.
dfsq,
3
sprawdź tę stronę angular.io/docs/ts/latest/guide/attribute-directives.html
Brandon Knight
1
Myślę, że mousemovewydarzenie może tu również pomóc. ZOBACZ TĘ STRONĘ NA PRZYKŁAD
Abhi

Odpowiedzi:

219

Jeśli chcesz wykonać zdarzenie podobne do najechania kursorem na dowolny element HTML, możesz to zrobić w ten sposób.

HTML

 <div (mouseenter) ="mouseEnter('div a') "  (mouseleave) ="mouseLeave('div A')">
        <h2>Div A</h2>
 </div> 
 <div (mouseenter) ="mouseEnter('div b')"  (mouseleave) ="mouseLeave('div B')">
        <h2>Div B</h2>
 </div>

Składnik

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

@Component({
    moduleId: module.id,
    selector: 'basic-detail',
    templateUrl: 'basic.component.html',
})
export class BasicComponent{

   mouseEnter(div : string){
      console.log("mouse enter : " + div);
   }

   mouseLeave(div : string){
     console.log('mouse leave :' + div);
   }
}

Aby zaimplementować w pełni funkcjonalne zdarzenia najechania kursorem w kątowniku 2, należy użyć zdarzeń myszy w centrum myszy i po lewej stronie myszy.

Vikash Dahiya
źródło
jak mogę uruchomić go z pliku .ts składnika kątowego?
mayur kukadiya
@mayurkukadiya patrz moja zaktualizowana odpowiedź poniżej - stackoverflow.com/a/37688325/5043867
Pardeep Jain
118

tak, jest on-mouseoverw angular2 zamiast ng-Mouseoverjak w angular 1.x, więc musisz to napisać: -

<div on-mouseover='over()' style="height:100px; width:100px; background:#e2e2e2">hello mouseover</div>

over(){
    console.log("Mouseover called");
  }

Jak @Gunter zasugerował w komentarzu on-mouseover, możemy też użyć tego alternatywnie . Niektóre osoby wolą alternatywę z prefiksem, znaną jako forma kanoniczna.

Aktualizacja

Kod HTML -

<div (mouseover)='over()' (mouseout)='out()' style="height:100px; width:100px; background:#e2e2e2">hello mouseover</div>

Kod kontrolera / .TS -

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

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ]
})
export class AppComponent  {
  name = 'Angular';

  over(){
    console.log("Mouseover called");
  }

  out(){
    console.log("Mouseout called");
  }
}

Przykład roboczy

Niektóre inne zdarzenia myszy mogą być używane w Angular -

(mouseenter)="myMethod()"
(mousedown)="myMethod()"
(mouseup)="myMethod()"
Pardeep Jain
źródło
47
Dlaczego nie <div (mouseover)='over()'? ;-)
Günter Zöchbauer
2
@ GünterZöchbauer, Czy jest to jakaś lista wszystkich wydarzeń? Spojrzałem na kątową stronę 2 i nie mogłem znaleźć (najechanie kursorem)
crh225
5
To nie są zdarzenia Angular, ale zdarzenia przeglądarki.
Günter Zöchbauer
1
Jasne, że tak jest, ale czy ktoś ma do tego link do dokumentacji Angulara? Mam wrażenie, że jest super abstrakcyjny i rzadki. Po prostu szukam listy miłośników zakupów, więc wiem, co jest standardem.
ThePartyTurtle
35

Możesz to zrobić z hostem:

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

@Directive({
  selector: '[myHighlight]',
  host: {
    '(mouseenter)': 'onMouseEnter()',
    '(mouseleave)': 'onMouseLeave()'
  }
})
export class HighlightDirective {
  private _defaultColor = 'blue';
  private el: HTMLElement;

  constructor(el: ElementRef) { this.el = el.nativeElement; }

  @Input('myHighlight') highlightColor: string;

  onMouseEnter() { this.highlight(this.highlightColor || this._defaultColor); }
  onMouseLeave() { this.highlight(null); }

   private highlight(color:string) {
    this.el.style.backgroundColor = color;
  }

}

Po prostu dostosuj go do swojego kodu (znajdującego się pod adresem : https://angular.io/docs/ts/latest/guide/attribute-directives.html )

bene
źródło
18

Jeśli interesuje Cię wchodzenie lub wychodzenie z jednego ze składników myszy, możesz użyć @HostListenerdekoratora:

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

@Component({
  selector: 'my-component',
  templateUrl: './my-component.html',
  styleUrls: ['./my-component.scss']
})
export class MyComponent implements OnInit {

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

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

...

}

Jak wyjaśniono w linku w komentarzu @Brandon do OP ( https://angular.io/docs/ts/latest/guide/attribute-directives.html )

Paweł
źródło
10

Po prostu zrób (mouseenter)atrybut w Angular2 + ...

W swoim HTML wykonaj:

<div (mouseenter)="mouseHover($event)">Hover!</div> 

i w swoim komponencie wykonaj:

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

@Component({
  selector: 'component',
  templateUrl: './component.html',
  styleUrls: ['./component.scss']
})

export class MyComponent implements OnInit {

  mouseHover(e) {
    console.log('hovered', e);
  }
} 
Alireza
źródło
7

Aby poradzić sobie ze zdarzeniem podczas przesadzania, możesz spróbować czegoś takiego (to działa dla mnie):

W szablonie HTML:

<div (mouseenter)="onHovering($event)" (mouseleave)="onUnovering($event)">
  <img src="../../../contents/ctm-icons/alarm.svg" class="centering-me" alt="Alerts" />
</div>

W składniku kątowym:

    onHovering(eventObject) {
    console.log("AlertsBtnComponent.onHovering:");
    var regExp = new RegExp(".svg" + "$");

    var srcObj = eventObject.target.offsetParent.children["0"];
    if (srcObj.tagName == "IMG") {
        srcObj.setAttribute("src", srcObj.getAttribute("src").replace(regExp, "_h.svg"));       
    }

   }
   onUnovering(eventObject) {
    console.log("AlertsBtnComponent.onUnovering:");
    var regExp = new RegExp("_h.svg" + "$");

    var srcObj = eventObject.target.offsetParent.children["0"];
    if (srcObj.tagName == "IMG") {
        srcObj.setAttribute("src", srcObj.getAttribute("src").replace(regExp, ".svg"));
    }
}
Dudi
źródło
6

Jeśli najedziesz myszką na cały komponent, możesz bezpośrednio @hostListenerobsłużyć zdarzenia, aby wykonać ruch myszą nad wszystkimi poniżej.

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

  @HostListener('mouseenter') onMouseEnter() {
    this.hover = true;
    this.elementRef.nativeElement.addClass = 'edit';
  }

  @HostListener('mouseleave') onMouseLeave() {
    this.hover = false;
    this.elementRef.nativeElement.addClass = 'un-edit';
  }

Jest dostępny w @angular/core. Przetestowałem to pod kątem4.x.x

Aniruddha Das
źródło
2
@Component({
    selector: 'drag-drop',
    template: `
        <h1>Drag 'n Drop</h1>
        <div #container 
             class="container"
             (mousemove)="onMouseMove( container)">
            <div #draggable 
                 class="draggable"
                 (mousedown)="onMouseButton( container)"
                 (mouseup)="onMouseButton( container)">
            </div>
        </div>`,

})

http://lishman.io/angular-2-event-binding

Clayton KN Passos
źródło
1

W pliku js / ts dla html, który zostanie najechany

@Output() elemHovered: EventEmitter<any> = new EventEmitter<any>();
onHoverEnter(): void {
    this.elemHovered.emit([`The button was entered!`,this.event]);
}

onHoverLeave(): void {
    this.elemHovered.emit([`The button was left!`,this.event])
}

W twoim HTML, który zostanie najechany

 (mouseenter) = "onHoverEnter()" (mouseleave)="onHoverLeave()"

W pliku js / ts, który otrzyma informacje o najechaniu kursorem

elemHoveredCatch(d): void {
    console.log(d)
}

W twoim elemencie HTML, który jest połączony z przechwytywaniem pliku js / ts

(elemHovered) = "elemHoveredCatch($event)"
Ludmiła Pietrowa
źródło