ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular
42 lines • 1.24 kB
JavaScript
import { Directive, ElementRef } from '@angular/core';
import { DomController } from '../../platform/dom-controller';
/**
* @hidden
*/
export class TabHighlight {
constructor(_elementRef, _dom) {
this._elementRef = _elementRef;
this._dom = _dom;
}
select(tab) {
if (!tab) {
return;
}
const dom = this._dom;
dom.read(() => {
const btnEle = tab.btn.getNativeElement();
const transform = `translate3d(${btnEle.offsetLeft}px,0,0) scaleX(${btnEle.offsetWidth})`;
dom.write(() => {
const ele = this._elementRef.nativeElement;
ele.style[dom.plt.Css.transform] = transform;
if (!this._init) {
this._init = true;
dom.write(() => {
ele.classList.add('animate');
}, 80);
}
});
}, 32);
}
}
TabHighlight.decorators = [
{ type: Directive, args: [{
selector: '.tab-highlight'
},] },
];
/** @nocollapse */
TabHighlight.ctorParameters = () => [
{ type: ElementRef, },
{ type: DomController, },
];
//# sourceMappingURL=tab-highlight.js.map