У новому Angular2 хтось знає правильний спосіб здійснити вигляд, як подію?
В Angular1 бувng-Mouseover
, але це, здається, не переносилося.
Я переглянув документи і нічого не знайшов.
У новому Angular2 хтось знає правильний спосіб здійснити вигляд, як подію?
В Angular1 бувng-Mouseover
, але це, здається, не переносилося.
Я переглянув документи і нічого не знайшов.
Відповіді:
Якщо ви хочете виконати подію, що наближається до курсора, на будь-якому 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.
так, є 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 до ОП ( 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);
}
}
Для обробки події в режимі overing ви можете спробувати щось подібне (це працює для мене):
У шаблоні 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 / t-файлі для 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 / t-файлі, який отримає інформацію про вивішування
elemHoveredCatch(d): void {
console.log(d)
}
У вашому HTML-елементі, який пов'язаний із захопленням файлу js / ts
(elemHovered) = "elemHoveredCatch($event)"