ในกรอบ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);
}
}
คุณควรใช้ทั้ง mouseenter และ mouseleave events inorder เพื่อทำการ hover events ที่ทำงานได้อย่างสมบูรณ์ใน angular 2
ใช่มีอยู่on-mouseover
ใน angular2 แทนที่จะเป็นng-Mouseover
เช่นเดียวกับในเชิงมุม 1.x ดังนั้นคุณต้องเขียนสิ่งนี้: -
<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");
}
}
เหตุการณ์เมาส์อื่น ๆ บางอย่างสามารถใช้ในเชิงมุม -
(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 )
หากคุณมีความสนใจในเมาส์เข้าหรือออกจากหนึ่งในองค์ประกอบของคุณคุณสามารถใช้@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);
}
...
}
ตามที่อธิบายไว้ในลิงก์ในความคิดเห็น @Brandon ไปที่ OP ( 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>`,
})
ในไฟล์ js / ts ของคุณสำหรับ html ที่จะถูกโฮเวอร์
@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)
}
ในองค์ประกอบ HTML ของคุณที่เชื่อมต่อกับการจับ js / ts ไฟล์
(elemHovered) = "elemHoveredCatch($event)"