Open
Description
Recommend writing directly to the dom and calling change detection manually in or after hover
callback:
constructor(private skyhook: SkyhookDndService, private _el: ElementRef) {
this.sub = this.style$.subscribe((style) => {
requestAnimationFrame_or_equivalent(() => {
this._el.nativeElement.style = `transform: ${style.transform}; display: ${style.display}`;
});
});
}