mirror of
https://github.com/VisActor/VTable
synced 2024-11-23 11:55:47 +00:00
24 lines
525 B
TypeScript
24 lines
525 B
TypeScript
export function createDiv(container: HTMLElement = document.body): HTMLElement {
|
|
const div = document.createElement('div');
|
|
|
|
container.appendChild(div);
|
|
|
|
return div;
|
|
}
|
|
|
|
export function createCanvas(container: HTMLElement = document.body, style?: CSSStyleSheet): HTMLCanvasElement {
|
|
const canvas = document.createElement('canvas');
|
|
|
|
container.appendChild(canvas);
|
|
|
|
return canvas;
|
|
}
|
|
|
|
export function removeDom(dom: HTMLElement) {
|
|
const parent = dom.parentNode;
|
|
|
|
if (parent) {
|
|
parent.removeChild(dom);
|
|
}
|
|
}
|