gpt4 book ai didi

jquery - 无论上传的图像大小如何,如何将动态创建的 Bootstrap 轮播图像的大小设置为桌面大小

转载 作者:太空宇宙 更新时间:2023-11-04 13:05:33 24 4
gpt4 key购买 nike

我试过类似的东西,但它不适合窗口的屏幕。有上下滚动的空间,但如果它适合屏幕,则不应存在。

$(document).ready(function () {
var $item = $('.carousel .item');
var $Wwidth = $(window).width();
$item.eq(0).addClass('active');
$item.width($Wwidth);
$item.addClass('full-screen');

$(window).on('resize', function () {
$item.width($Wwidth);
});
}

最佳答案

最后,我通过声明一个高度变量解决了这个问题,如下所示。如果有人面临同样的问题,这会对他们有所帮助。

        $(document).ready(function () {

var $item = $('.carousel .item');
var $Wwidth = $(window).width();
var $wHeight = $(window).height();
$item.eq(0).addClass('active');
$item.height($wHeight);
$item.width($Wwidth);
$item.addClass('full-screen');

$(window).on('resize', function () {
$item.height($wHeight);
$item.width($Wwidth);
});

});

关于jquery - 无论上传的图像大小如何,如何将动态创建的 Bootstrap 轮播图像的大小设置为桌面大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42433648/

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