本文整理匯總了TypeScript中@phosphor/domutils.ElementExt類的典型用法代碼示例。如果您正苦於以下問題:TypeScript ElementExt類的具體用法?TypeScript ElementExt怎麽用?TypeScript ElementExt使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了ElementExt類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: handleState
function handleState(widget: Notebook, state: IState): void {
if (state.wasFocused || widget.mode === 'edit') {
widget.activate();
}
ElementExt.scrollIntoViewIfNeeded(widget.node, widget.activeCell.node);
}
示例2:
return ArrayExt.findFirstIndex(nodes, node => {
return ElementExt.hitTest(node, x, y);
});
示例3: it
it('should align the bottom edge for smaller size elements overlapping the bottom', () => {
elemB.style.top = '600px';
div.scrollTop = 50;
ElementExt.scrollIntoViewIfNeeded(div, elemB);
expect(div.scrollTop).to.equal(100);
});
示例4:
let index = ArrayExt.findFirstIndex(this._crumbs, node =>
ElementExt.hitTest(node, event.clientX, event.clientY)