Estoy usando como background para una web una imagen que carga en el fondo.
Quiero que al entrar cargue de manera aleatoria, o sea que no siempre sea el mismo fondo el que aparece.
coloque este código:
Código:
Me funciona perfecto en safari y chrome, pero IE y en Firefox no me funciona.$(document).ready(function(){ bgImageTotal=19; randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1; imgPath=('imagenes/background/'+randomNumber+'.jpg'); $('#bgimg').attr('src', ('url('+imgPath+')')); });
El div bgimg esta asociado también a otro script que permite que la imagen se adapte al tamaño de la ventana. Es un plugin de jquery.
Este es el plugin que activo desde el html.
Código:
(function($){ $.fn.fullscreenr = function(options) { if(options.height === undefined) alert('Please supply the background image height, default values will now be used. These may be very inaccurate.'); if(options.width === undefined) alert('Please supply the background image width, default values will now be used. These may be very inaccurate.'); if(options.bgID === undefined) alert('Please supply the background image ID, default #bgimg will now be used.'); var defaults = { width: 1280, height: 800, bgID: 'bgimg' }; var options = $.extend({}, defaults, options); $(document).ready(function() { $(options.bgID).fullscreenrResizer(options); }); $(window).bind("resize", function() { $(options.bgID).fullscreenrResizer(options); }); return this; }; $.fn.fullscreenrResizer = function(options) { // Set bg size var ratio = options.height / options.width; // Get browser window size var browserwidth = $(window).width(); var browserheight = $(window).height(); // Scale the image if ((browserheight/browserwidth) > ratio){ $(this).height(browserheight); $(this).width(browserheight / ratio); } else { $(this).width(browserwidth); $(this).height(browserwidth * ratio); } // Center the image $(this).css('left', (browserwidth - $(this).width())/2); $(this).css('top', (browserheight - $(this).height())/2); return this; }; })(jQuery);
El problema es que uno anula al otro en esos browsers.
Cómo puedo hacer para que funcionen ambos?
Mil gracias