Açısal 2 Fareyle Üzerine Gelme olayı


198

Yeni Angular2'de çerçevesinde, bir olay gibi bir fareyle doğru yolunu bilen var mı?

In Angular1 vardı ng-Mouseoverama artık bitti yapılmıştır görünmüyor.

Dokümanlara baktım ve hiçbir şey bulamadım.


2
Sadece çok büyük.
dfsq


1
mousemoveOlay burada da yardımcı olabilir diye düşünüyorum . ÖRNEK İÇİN BU SAYFAYI
Abhi

Yanıtlar:


219

Herhangi bir HTML öğesinde fareyle üzerine gelme benzeri bir etkinlik gerçekleştirmek istiyorsanız, bunu böyle yapabilirsiniz.

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>

Bileşen

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

Açısal 2'de tam fonksiyonel vurgulu olayları uygulamak için hem mouseenter hem de mouseleave olaylarını kullanmalısınız.


açısal bileşen .ts dosyasından nasıl tetikleyebilirim?
mayur kukadiya

- Aşağıda benim güncellenen cevaba bakınız @mayurkukadiya stackoverflow.com/a/37688325/5043867
Pardeep Jain

118

evet açısal 1.x gibi on-mouseoveraçısal2 yerine ng-Mouseoverbu yüzden yazmak zorunda: -

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

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

@Gunter Yorumda önerildiği gibi on-mouseoverbunu da kullanabileceğimiz bir alternatif var . Bazı insanlar kanonik form olarak bilinen önek alternatifini tercih ederler.

Güncelleme

HTML Kodu -

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

Denetleyici / .TS Kodu -

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

Çalışma Örneği

Diğer bazı Fare olayları Angular'da kullanılabilir -

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

47
Neden olmasın <div (mouseover)='over()'? ;-)
Günter Zöchbauer

2
@ GünterZöchbauer, Tüm olayların bir çeşit listesi var mı? Açısal 2 sitede baktım ve (mouseover) bulamadım
crh225

6
Bunlar Açısal olaylar değil tarayıcı olaylarıdır.
Günter Zöchbauer

1
Açıkçası bu, ama herkes bunun için açısal belgelere bir bağlantısı var mı? Süper soyut ve seyrek gibi hissediyorum. Ben sadece on-whatevers bir listesini arıyorum, bu yüzden standart geliyor biliyorum.
ThePartyTurtle

35

Bir ana bilgisayar ile yapabilirsiniz:

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

}

Sadece kodunuza uyarlayın (şu adreste bulunur: https://angular.io/docs/ts/latest/guide/attribute-directives.html )


18

Bileşenlerden birine giren veya çıkan fareyle ilgileniyorsanız, @HostListenerdekoratörü kullanabilirsiniz :

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'deki bağlantıda açıklandığı gibi ( https://angular.io/docs/ts/latest/guide/attribute-directives.html )


10

Basitçe (mouseenter)Angular2 + 'da nitelik ...

HTML'nizde şunları yapın:

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

ve bileşeninizde şunları yapın:

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

Etkinliğin üstesinden gelmek için böyle bir şey deneyebilirsiniz (benim için çalışır):

Html şablonunda:

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

Açısal bileşende:

    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

Bileşenin her yerinde farenin üzerine gelme seçeneğiniz varsa, doğrudan @hostListenerfareyi aşağıda gerçekleştirmek için olayları doğrudan yönetebilirsiniz.

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

Onun mevcut @angular/core. Açısal olarak test ettim4.x.x


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


1

Üzerine gelinecek html için js / ts dosyanızda

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

Üzerine gelinecek HTML'nizde

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

Vurgulamanın bilgisini alacak olan js / ts dosyanızda

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

Js / ts dosyasını yakalamakla bağlantılı HTML öğenizde

(elemHovered) = "elemHoveredCatch($event)"
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.