新しいAngular2フレームワークでは、イベントのようにホバーする適切な方法を誰かが知っていますか?
でAngular1があったng-Mouseover
が、それは引き継がれているようには見えません。
ドキュメントを確認しましたが何も見つかりませんでした。
mousemove
イベントもここで役立つと思います。例については、このページを参照してください
新しいAngular2フレームワークでは、イベントのようにホバーする適切な方法を誰かが知っていますか?
でAngular1があったng-Mouseover
が、それは引き継がれているようには見えません。
ドキュメントを確認しましたが何も見つかりませんでした。
mousemove
イベントもここで役立つと思います。例については、このページを参照してください
回答:
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イベントの両方を使用する必要があります。
はい、angular 1.x on-mouseover
のng-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()"
<div (mouseover)='over()'
?;-)
あなたはホストでそれを行うことができます:
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にあります)
コンポーネントの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)
(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);
}
}
オーバーのイベントを処理するには、次のようなものを試すことができます(私にとってはうまくいきます)。
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"));
}
}
コンポーネント全体のマウスオーバーがオプションである場合、直接@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
@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>`,
})
ホバーされる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)"