Files
ReZygisk/webroot/js/modal/lang.js
T
RainyXeon 1bdaeaf0ac add: bottom slide animation for modal
This commit will add animation for modal that commit from the bottom (quite goofy) and click animation for theme-switch language-switch and close-modal icon
2024-11-12 00:08:42 -03:00

24 lines
662 B
JavaScript

const button = document.getElementById('lang_switcher')
const target = document.getElementById('lang_modal')
const close_button = document.getElementById('lang_modal_close')
let sys_module_mode = localStorage.getItem('/cache/modal/language/state')
sys_module_mode = setData('closed')
button.addEventListener('click', () => {
target.style.top = '0%'
sys_module_mode = setData('opened')
})
close_button.addEventListener('click', () => {
target.style.top = '100%'
sys_module_mode = setData('closed')
})
function setData(mode) {
localStorage.setItem('/cache/modal/language/state', mode)
return localStorage.getItem('/cache/modal/language/state')
}