Nuestro team de especialistas despúes de algunos días de trabajo y de recopilar de información, hemos dado con los datos necesarios, deseamos que te sea útil para tu trabajo.
Ejemplo 1: imagen de fondo js
document.body.style.backgroundImage = "url('img_tree.png')";
Ejemplo 2: establecer un attribute imagen de fondo javascript
function bg()
var imgCount = 3;
var dir = 'http://local.statamic.com/_themes/img/';
// I changed your random generator
//floor: helps getting a random integer
var randomCount = (Math.floor(Math.random()* imgCount));
// I changed your array to the literal notation. The literal notation is preferred.
var images = ['001.png','002.png','003.png'];
// I changed this section to just define the style attribute the best way I know how.
document.getElementById('banner').setAttribute("style","background-image: url("+ dir + images[randomCount] +");background-repeat: no-repeat;background-size: 388px 388px");
// Don't forget to run the function instead of just defining it.
bg();
Si para ti ha sido de provecho este artículo, nos gustaría que lo compartas con el resto programadores y nos ayudes a extender este contenido.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)