Diferencia entre revisiones de «Usuario:ManuelRomero/ProgramacionWeb/Arrays/ejercicios/ejercicio4»
De WikiEducator
Línea 1: | Línea 1: | ||
− | + | {{MRM_Actividad|Title=Ejercicio 5 : Imágenes aleatorias| | |
− | {{MRM_Actividad|Title=Ejercicio | + | Crea un array con imagenes aleatorias y luego haz que se carguen cada 5 segundos de forma aleatoria |
− | + | ||
− | + | {{Tip|Para recargar de forma periódica la página pasados unos segundos podemos usar el meta de html | |
− | + | <source lang=html5> | |
− | + | <META HTTP-EQUIV=Refresh CONTENT="5; URL=vuestra_pagina.php"> | |
− | + | </source> | |
− | + | ;Como array de imágenes podemos tomar estas: | |
− | ; | + | <source lang=php> |
− | + | $array=[ | |
− | + | "https://es.wikieducator.org/images/3/3d/Ajax_cliente_servidor.png", | |
− | + | ||
− | + | "https://es.wikieducator.org/images/7/7b/Funcionamiento_ajax.png", | |
− | + | "https://es.wikieducator.org/images/a/aa/Angular_app_base.png", | |
− | + | "https://es.wikieducator.org/images/3/3d/Docker_distancia_1.png", | |
− | + | ||
− | + | "https://es.wikieducator.org/images/4/4e/Opcion_Instalar.png", | |
− | + | "https://es.wikieducator.org/images/a/ab/AplicacionWeb.png", | |
− | + | "https://es.wikieducator.org/images/e/e4/Red3.png", | |
+ | "https://es.wikieducator.org/images/f/f2/DACTW.png", | ||
+ | "https://es.wikieducator.org/images/e/e5/M3_web.png", | ||
+ | "https://es.wikieducator.org/images/a/a6/Ficheros.jpeg"]; | ||
+ | </source> | ||
+ | }} | ||
}} | }} |
Revisión de 11:55 10 nov 2020
Crea un array con imagenes aleatorias y luego haz que se carguen cada 5 segundos de forma aleatoria Tip: Para recargar de forma periódica la página pasados unos segundos podemos usar el meta de html
<META HTTP-EQUIV=Refresh CONTENT="5; URL=vuestra_pagina.php">
$array=[ "https://es.wikieducator.org/images/3/3d/Ajax_cliente_servidor.png", "https://es.wikieducator.org/images/7/7b/Funcionamiento_ajax.png", "https://es.wikieducator.org/images/a/aa/Angular_app_base.png", "https://es.wikieducator.org/images/3/3d/Docker_distancia_1.png", "https://es.wikieducator.org/images/4/4e/Opcion_Instalar.png", "https://es.wikieducator.org/images/a/ab/AplicacionWeb.png", "https://es.wikieducator.org/images/e/e4/Red3.png", "https://es.wikieducator.org/images/f/f2/DACTW.png", "https://es.wikieducator.org/images/e/e5/M3_web.png", "https://es.wikieducator.org/images/a/a6/Ficheros.jpeg"];
|