сделал верстку lang и mini-profile

This commit is contained in:
Kirill Pet
2024-10-04 17:25:13 +03:00
parent b208ae3e64
commit 3a612da230
16 changed files with 412 additions and 10 deletions

27
assets/js/gp-main.js Normal file
View File

@@ -0,0 +1,27 @@
'use strict';
// lang start
let lang = document.querySelector('.lang');
lang.onclick = function (e) {
let target = e.target
console.log(e);
if (target.classList.contains('lang__open')) {
}
// let langOpenButton
// let langContent
// let langList
// let height = langList.offsetHeight;
}
// lang end

View File