这种闪烁使我丧命,在阅读了所有与jQuery相关的线程和之后,我仍然无法弄清楚。
所以我有这个@Directive来显示工具提示,这是我将其绑定到元素的方式:
@HostListener('mouseenter', ['$event']) onEnter( e: MouseEvent ) {
this.showTooltip(e);
}
@HostListener('mouseleave', ['$event']) onLeave( e: MouseEvent ) {
this.hideTooltip(e);
}
@HostListener('click', ['$event']) onClick( e: MouseEvent ) {
this.hideTooltip(e);
}
constructor(
private el: ElementRef,
private renderer: Renderer2,
private coordsService: CoordsService,
@Inject(DOCUMENT) doc
) {
this.docBody = doc.body;
}
public ngAfterViewInit(): void {
this.tooltipContainer = this.renderer.createElement('div');
this.renderer.addClass( this.tooltipContainer, 'tooltip--tip');
this.renderer.addClass( this.tooltipContainer, 'tooltip--pos_' + this.position);
}
public showTooltip( e: MouseEvent ): void {
if ( this.tooltip !== null ) {
// text
this.selectedTooltip = this.renderer.createText( this.tooltip );
// append to body
this.renderer.appendChild( this.tooltipContainer, this.selectedTooltip);
this.renderer.appendChild( this.docBody, this.tooltipContainer );
// target element
const target: HTMLElement = <HTMLElement>e.target;
const bbox: ClientRect = target.getBoundingClientRect();
// the array holds the pixel position of the property; should sync with top:left
let coords: ElementCoords = this.coordsService.setPositionCoords(bbox, this.position, this.tooltipContainer, { left: -6 } );
// write position
this.renderer.setStyle( this.tooltipContainer, 'top', coords.top+'px' );
this.renderer.setStyle( this.tooltipContainer, 'left', coords.left+'px' );
}
}
public hideTooltip( e: MouseEvent ): void {
if ( this.selectedTooltip ) {
this.renderer.removeChild ( this.tooltipContainer, this.selectedTooltip);
this.renderer.removeChild( this.docBody, this.tooltipContainer );
this.selectedTooltip = null;
}
}
每个<span>
中闪烁的文本。每个里面有SVG的选择器都会闪烁...有什么想法吗?
PS。尽管出于某种原因注入了el: ElementRef
,但仍未使用它。尝试匹配它的引用-仍然没有运气。
答案 0 :(得分:0)
您的tooltipContainer正在触发mouseleave
,因为它位于元素上方。如果您不介意无法在其中单击/选择任何内容。在您的CSS中将pointer-events: none
设置为tooltipContainer。
使用指令(mouseenter)输入元素,工具提示容器将移到该元素上。现在,工具提示上有光标。啊哈!这会使用指令触发元素的(mouseleave),因此工具提示将消失。但是,嘿,指令不再具有游标...(mouseenter)!...但是,嘿!工具提示再次位于光标下方...(mouseleave)...等等:)
对于指针事件,请确保覆盖的元素没有收到任何偶数,并且这些偶数被触发到其下面的元素。不过,您也可以尝试使工具提示不与元素重叠,但这取决于您