cambio de imagenes en valores y en metodología

This commit is contained in:
David Itehua Xalamihua 2025-06-06 19:17:54 -06:00
parent 745c945c3a
commit a614c4898b
11 changed files with 19 additions and 8 deletions

11
.gitignore vendored Normal file
View File

@ -0,0 +1,11 @@
# Ignorar archivos de configuración de IDEs
.venv
venv
# Ignorar todo en /static/uploads
/static/uploads/*
/cache/*
# ¡Pero no ignores el archivo .gitkeep!
!/static/uploads/.gitkeep
!/cache/.gitkeep

View File

@ -90,10 +90,10 @@
/* ---------------------------- */
/* IMÁGENES DE FONDO */
/* ---------------------------- */
.p1 { background-image: url('/static/y_img/about-us/team.avif'); }
.p2 { background-image: url('/static/y_img/about-us/mision.avif'); }
.p3 { background-image: url('/static/y_img/about-us/vision.avif'); }
.p4 { background-image: url('/static/y_img/about-us/valores.avif'); }
.p1 { background-image: url('/static/y_img/about-us/team.webp'); }
.p2 { background-image: url('/static/y_img/about-us/mision.webp'); }
.p3 { background-image: url('/static/y_img/about-us/vision.webp'); }
.p4 { background-image: url('/static/y_img/about-us/valores.webp'); }
/* ============================================ */

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 419 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 255 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 458 KiB

View File

@ -11,10 +11,11 @@
<img id="random-img" alt="Imagen aleatoria" data-aos="fade-up" data-aos-delay="0" data-aos-duration="800">
<img src="{{ url_for('static', filename='y_img/methodology/m-02.svg') }}" alt="Metodología" data-aos="fade-up" data-aos-delay="0" data-aos-duration="800">
<script>
<!-- <img id="random-img" alt="Imagen aleatoria" data-aos="fade-up" data-aos-delay="0" data-aos-duration="800"> -->
<!-- <script>
document.addEventListener("DOMContentLoaded", () => {
const images = [
"{{ url_for('static', filename='y_img/methodology/m-01.svg') }}",
@ -23,8 +24,7 @@
const randomIndex = Math.floor(Math.random() * images.length);
document.getElementById("random-img").src = images[randomIndex];
});
</script>
</script> -->
{% endblock body %}