我正在使用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>
答案 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" />