gpt4 book ai didi

jquery - 图像未反射(reflect)其属性

转载 作者:行者123 更新时间:2023-11-28 15:01:18 25 4
gpt4 key购买 nike

http://grab.by/1rI8

我写了一些 jQuery 脚本,这样背景图片就会一直缩放,永远不会显示空白点。

    function runIt() {
currentHeight = $("#bg").height() //useless for you
currentWidth = $("#bg").width() //useless for you
ccurrentHeight = $("#cover").height() //useless for you
ccurrentWidth = $("#cover").width() //useless for you
wcurrentHeight = $(window).height() //useless for you
wcurrentWidth = $(window).width() //useless for you
$("#auto").empty() //useless for you
$("#auto").append('BG Current Height:"'+currentHeight+'"Width"'+currentWidth+'"<br \>') //useless for you
$("#auto").append('Cover Current Height:"'+ccurrentHeight+'"Width"'+ccurrentWidth+'"<br \>') //useless for you
$("#auto").append('Window Current Height:"'+wcurrentHeight+'"Width"'+wcurrentWidth+'"') //useless for you
if ($("#bg").height() < $(window).height()) {
// $("#bg").empty() //useless for you
// $("#bg").append('<img src="'+imgPath+'" style="height:100%" />') //useless for you
$("#bg").css({
width: $("#cover").width(),
height: "auto"
})
}
else {
// $("#bg").empty() //useless for you
// $("#bg").append('<img src="'+imgPath+'" style="width:100%" />') //useless for you
$("#bg").css({
height: $("#cover").height(),
width: "auto"
})
}
}
setInterval(runIt, 50);

有人知道为什么这不能正常工作吗?

谢谢,斯威茨

最佳答案

    function runIt() {
winprop = $(window).height() / $(window).width();
var bgprop = $("#bgimg").height() / $("#bgimg").width();
if(winprop < bgprop)
{
        $("#bgimg").css({
        width: $(window).width(),
        height: "auto"
        })
} else {
        $("#bgimg").css({
        width: "auto",
        height: $(window).height()
        })
   }
}
function doSomething() {
alert("I'm done resizing for the moment");
};
runIt();
var resizeTimer = null;
$(window).bind('resize', function() {
if (resizeTimer) clearTimeout(resizeTimer);
resizeTimer = setTimeout(runIt, 20);
});

把Bg图片给自己的id。更改图像的大小,而不是 div。

关于jquery - 图像未反射(reflect)其属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1977914/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com