Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

1234567891011121314151617181920212223242526
  1. // begin accessing JSON data here
  2. var data = JSON.parse(localStorage.getItem("AZAR"));
  3. var page = document.getElementById("home");
  4. var aleatorio = Math.floor(Math.random()*32);
  5. document.getElementById("image").innerHTML = `<img src="img/${aleatorio}.jpg" width="100%" height="300">`;
  6. document.getElementById("Content").innerHTML = data[aleatorio].titulo + "<br>" + data[aleatorio].texto;
  7. page.addEventListener("show", function(event){
  8. document.getElementById("image").innerHTML='';
  9. document.getElementById("Content").innerHTML='';
  10. var aleatorio = Math.floor(Math.random()*32);
  11. //var azar = document.getElementById("azar");
  12. //var img = ons.createElement(`<img src="img/${aleatorio}.png">`);
  13. document.getElementById("image").innerHTML = `<img src="img/${aleatorio}.jpg" width="100%" height="300">`;
  14. //document.getElementById("Title").innerHTML = data[aleatorio].Renglones;
  15. document.getElementById("Content").innerHTML = data[aleatorio].titulo + "<br>" + data[aleatorio].texto;
  16. //azar.appendChild(img);
  17. });