HTML
HTML
HTML
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cajero Automático</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Cajero Automático</h1>
<button class="toggle-btn" onclick="toggleSidebar()">≣</button>
</header>
<div id="contenido">
<!-- Aquí se mostrará el contenido de cada sección -->
<div id="inicio" style="display: block;">
<h2>Bienvenido al Banco WYW</h2>
<img src="ban.webp" alt="Imagen del Banco XYZ">
<footer>
<p>Derechos Reservados © 2024. Cajero Automático</p>
<p><a href="#" onclick="mostrarModal()">Términos y Condiciones</a></p>
</footer>
<script src="script.js"></script>
</body>
</html>
JS:
function mostrarSeccion(seccion) {
// Ocultar todas las secciones
var secciones = document.querySelectorAll("#contenido > div");
secciones.forEach(function(seccion) {
seccion.style.display = "none";
});
function mostrarModal() {
var modal = document.getElementById("modal");
modal.style.display = "block";
}
function cerrarModal() {
var modal = document.getElementById("modal");
modal.style.display = "none";
}
function toggleSidebar() {
var sidebar = document.getElementById("sidebar");
if (sidebar.style.left === "-250px") {
sidebar.style.left = "0";
} else {
sidebar.style.left = "-250px";
}
}
body {
margin: 0;
font-family: Arial, sans-serif;
}
header {
position: fixed;
width: 100%;
background-color: #00407a;
color: #fff;
padding: 20px;
text-align: center;
}
header, nav {
position:sticky;
width: 100%;
top: 0;
background-color: #00407a; /* Ajusta el color de fondo según sea
necesario */
}
nav ul {
list-style-type: none;
padding: 0;
background-color: #f4f4f4;
text-align: center;
nav ul li {
display: inline;
margin: 0 10px;
}
nav ul li a {
text-decoration: none;
color: #333;
padding: 10px;
display: inline-block;
transition: background-color 0.3s;
}
nav ul li a:hover {
background-color: #ddd;
}
#contenido {
padding: 20px;
text-align: center;
}
/* Estilos para el modal */
.modal {
display: none; /* Por defecto oculto */
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
text-align: center; /* Centrar el texto */
font-family: "Arial", sans-serif; /* Cambiar la fuente */
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
footer {
background-color: #333; /* Color de fondo oscuro */
color: #fff; /* Color del texto blanco */
padding: 20px; /* Espaciado interno */
text-align: center; /* Centrar el texto */
}
footer p {
margin: 0; /* Eliminar el margen predeterminado */
}
footer a {
color: #fff; /* Color del enlace blanco */
text-decoration: none; /* Eliminar el subrayado del enlace */
}
footer a:hover {
text-decoration: underline; /* Agregar subrayado al pasar el mouse sobre
el enlace */
}
#inicio img {
width: 50%; /* Establece el ancho al 100% del contenedor */
height: auto; /* Mantén la proporción de la imagen */
margin-bottom: 20px; /* Agrega un margen inferior para separar del texto
*/
}
.sidebar {
height: 100%;
width: 250px;
position: fixed;
top: 0;
left: -250px;
background-color: #333;
padding-top: 20px;
transition: left 0.3s ease;
text-align: center;
.sidebar ul {
list-style-type: none;
padding: 0;
}
.sidebar li {
padding: 10px;
}
.sidebar a {
color: #fff;
text-decoration: none;
}
.sidebar a:hover {
background-color: #575757;
}
.content {
margin-left: 250px;
padding: 20px;
}
.toggle-btn, .toggle-btn1 {
position: absolute;
top: 10px;
background-color: transparent;
color: #fff;
border: none;
cursor: pointer;
padding: 10px;
font-size: xx-large;
}
.toggle-btn {
left: 10px;
}
.toggle-btn1 {
right: 10px;
}