Angular 2 Hoverイベント


197

新しいAngular2フレームワークでは、イベントのようにホバーする適切な方法を誰かが知っていますか?

Angular1があったng-Mouseoverが、それは引き継がれているようには見えません。

ドキュメントを確認しましたが何も見つかりませんでした。


2
それはちょうどマウスオーバーです。
dfsq 2016年


1
mousemoveイベントもここで役立つと思います。例については、このページを参照してください
Abhi 2018

回答:


217

HTML要素でホバーのようなイベントを実行する場合は、次のように実行できます。

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>

成分

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);
   }
}

角度2で完全に機能するホバーイベントを実装するには、mouseenterイベントとmouseleaveイベントの両方を使用する必要があります。


どうすれば角度コンポーネントの.tsファイルからトリガーできますか?
Mayur kukadiya

-以下の私の更新の答えを参照@mayurkukadiya stackoverflow.com/a/37688325/5043867
Pardeepジャイナ

117

はい、angular 1.x on-mouseoverng-Mouseoverようにangular2にあるので、これを書く必要があります:-

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

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

@Gunterがコメントで提案したon-mouseoverように、これを使用できる代替案もあります。一部の人々は、正規形として知られている接頭辞の代替を好みます。

更新

HTMLコード-

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

コントローラー/.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");
  }
}

実例

他のいくつかのマウスイベントはAngularで使用できます-

(mouseenter)="myMethod()"
(mousedown)="myMethod()"
(mouseup)="myMethod()"

47
なんで<div (mouseover)='over()'?;-)
ギュンターZöchbauer

2
@GünterZöchbauer、彼らはすべてのイベントのリストのようなものですか?角度2のサイトを調べたところ、(マウスオーバー)が見つかりませんでした
crh225

5
これらはAngularイベントではなく、ブラウザイベントです。
ギュンターZöchbauer

1
明らかにこれが方法ですが、誰かがAngularのドキュメントへのリンクを持っていますか?とても抽象的でまばらな感じがします。何が標準になっているのかがわかるように、私は何でもリストを探しています。
ThePartyTurtle 2017年

35

あなたはホストでそれを行うことができます:

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;
  }

}

それをあなたのコードに適応させるだけです(https://angular.io/docs/ts/latest/guide/attribute-directives.htmlにあります


18

コンポーネントの1つに出入りするマウスに興味がある場合は、@HostListenerデコレーターを使用できます。

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);
  }

...

}

OPへの@Brandonコメントのリンクで説明されているように(https://angular.io/docs/ts/latest/guide/attribute-directives.html


10

(mouseenter)Angular2 +で単に属性を実行してください...

あなたのHTMLで:

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

コンポーネントで次のようにします:

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);
  }
} 

7

オーバーのイベントを処理するには、次のようなものを試すことができます(私にとってはうまくいきます)。

HTMLテンプレートで:

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

角度成分では:

    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"));
    }
}

6

コンポーネント全体のマウスオーバーがオプションである場合、直接@hostListenerマウスオーバーを実行するイベントを処理することができます。

  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';
  }

で利用可能です@angular/core。私はそれを角度でテストしました4.x.x



1

ホバーされるHTMLのjs / tsファイル内

@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])
}

ホバーされるHTML内

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

ホバリングの情報を受け取るjs / tsファイル内

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

キャッチjs / tsファイルに接続されているHTML要素内

(elemHovered) = "elemHoveredCatch($event)"
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.