solo imagen estatica en soluciones, se quita la seleccion random
This commit is contained in:
parent
8fdba4afc6
commit
94e4367c31
@ -10,11 +10,11 @@
|
|||||||
{% block body %}
|
{% block body %}
|
||||||
|
|
||||||
|
|
||||||
|
<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">
|
||||||
<img id="random-img" alt="Imagen aleatoria" 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", () => {
|
document.addEventListener("DOMContentLoaded", () => {
|
||||||
const images = [
|
const images = [
|
||||||
"{{ url_for('static', filename='y_img/methodology/m-01.svg') }}",
|
"{{ url_for('static', filename='y_img/methodology/m-01.svg') }}",
|
||||||
@ -23,9 +23,7 @@
|
|||||||
const randomIndex = Math.floor(Math.random() * images.length);
|
const randomIndex = Math.floor(Math.random() * images.length);
|
||||||
document.getElementById("random-img").src = images[randomIndex];
|
document.getElementById("random-img").src = images[randomIndex];
|
||||||
});
|
});
|
||||||
</script>
|
</script> -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% endblock body %}
|
{% endblock body %}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user