2022-10-06 17:14:04 +08:00
|
|
|
export const showKeyboardToolbar = (bottom = 0) => {
|
|
|
|
|
const toolbarElement = document.getElementById("keyboardToolbar");
|
|
|
|
|
toolbarElement.classList.remove("fn__none");
|
|
|
|
|
toolbarElement.style.bottom = bottom + "px";
|
|
|
|
|
}
|
2022-10-06 17:30:43 +08:00
|
|
|
|
|
|
|
|
export const hideKeyboardToolbar = () => {
|
|
|
|
|
const toolbarElement = document.getElementById("keyboardToolbar");
|
|
|
|
|
toolbarElement.classList.add("fn__none");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const initKeyboardToolbar = () => {
|
|
|
|
|
const toolbarElement = document.getElementById("keyboardToolbar");
|
2022-10-06 20:39:43 +08:00
|
|
|
toolbarElement.addEventListener("click", (event) => {
|
|
|
|
|
const target = event.target as HTMLElement
|
|
|
|
|
if (target.tagName === "svg") {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
})
|
2022-10-06 17:30:43 +08:00
|
|
|
}
|