为什么Backgrounder插件不适用于Firefox或Explorer

时间:2011-01-19 12:19:30

标签: jquery jquery-plugins fullscreen

我正在使用Backgrounder插件的全屏图像,它在Chrome中效果很好,但不会在Firefox或资源管理器中显示图像,我使用的是Jquery 4.4

 $(document).ready(function(){  
$(function() {
  $("#my_background").backgrounder();
});
});


<div id="my_background"><img src="../images/bk/luft.jpg" alt="Lufthavn"/></div>

1 个答案:

答案 0 :(得分:0)

我遇到了背景问题。我认为最符合您需求的插件是fullscreenr。 用法是这样的:

<强> JS

// You need to specify the size of your background image here (could be done automatically by some PHP code)
            var FullscreenrOptions = {  width: 1024, height: 683, bgID: '#bgimg' };
            // This will activate the full screen background!
            jQuery.fn.fullscreenr(FullscreenrOptions);

<强> HTML

<img id="bgimg" src="img/bg.jpg" />