Advertisement
ucielsola

perfil js

May 2nd, 2022
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. function perfilUsuario() {
  2. nombreUsuarioTxt.innerHTML = currentUser?.nombre;
  3. }
  4.  
  5. function abrirPerfil() {
  6. optionsPerfil.classList.remove("cerrado");
  7. optionsPerfil.classList.add("abierto");
  8. }
  9.  
  10. function cerrarPerfil() {
  11. optionsPerfil.classList.add("cerrado");
  12. optionsPerfil.classList.remove("abierto");
  13. }
  14.  
  15. document.addEventListener("click", (event) => {
  16. // para cerrar
  17. if (
  18. event.target.id != "fotoPerfil" ||
  19. optionsPerfil.classList.contains("abierto")
  20. ) {
  21. cerrarPerfil();
  22. console.log("cerrar");
  23. } else {
  24. // para abrir
  25. abrirPerfil();
  26. console.log("abrir");
  27. }
  28. });
  29.  
  30. cerrarSesionBtn.addEventListener("click", () => {
  31. localStorage.removeItem("currentUser");
  32. window.location.assign("../../index.html");
  33. });
  34.  
  35. if (!currentUser) {
  36. window.location.assign("../../index.html");
  37. }
  38.  
  39. perfilUsuario();
  40.  
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement