gpt4 book ai didi

javascript - jquery循环 - 即使图像比浏览器窗口宽,也保持幻灯片居中

转载 作者:行者123 更新时间:2023-11-28 08:52:09 26 4
gpt4 key购买 nike

我正在尝试使用 jquery 循环插件来淡入和淡出一些我想在网站首页上使用的图像。

问题是,为了满足大屏幕用户的需求,图像宽度为 1400 像素并居中,这在大屏幕尺寸上效果很好,但我需要这些图像在所有屏幕尺寸上都居中,如果您通过较小的查看入口始终可以查看图像的最左侧。我希望图像的中心始终位于查看入口的中心。

为了更好地解释您是否访问: http://renegadeox.com/并调整浏览器窗口的大小(假设您的分辨率超过 1400 像素宽),您可以看到图像保持居中,直到窗口小于图像,此时右侧开始变得不可见。我希望两侧都以相同的速率裁剪。

我知道背景图像是可能的。但我无法淡出背景图像。

我见过其他使图像居中和淡入淡出等的方法,但没有一个可以一起工作。谁能帮我吗。我没有主意了:(

这是我的代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="http://malsup.github.com/jquery.cycle.all.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function() {
$('.slideshowWrap').cycle({
fx: 'fade', // http://malsup.com/jquery/cycle/ Background rotater
});
});
</script>
<div style="margin: 0 auto" class="slideshowWrap">
<div class="homeslideshow">
<img src="background_01.jpg" alt="" />
</div>
<div class="homeslideshow">
<img src="background_02.jpg" alt="" />
</div>
<div class="homeslideshow">
<img src="background_03.jpg" alt="" />
</div>
</div>
</body>
</html>

最佳答案

试试这个。仔细检查并为每个图像指定类:“sliderImage”。

$(document).ready(function () {
$('.slideshowWrap').cycle({
fx: 'fade', // http://malsup.com/jquery/cycle/ Background rotater
});
centerSliderImage();
});
$(window).resize(function () {
centerSliderImage();
});

function centerSliderImage() {
$(".sliderImage").each(function () {
if (this.width > window.innerWidth) {
var offset = (this.width - window.innerWidth) / 2;
$(this).css({
"margin-left": "-" + offset + "px"
})
}
})
}

JSFiddle: http://jsfiddle.net/Wy2ku/6/

更容易观看演示: http://fiddle.jshell.net/Wy2ku/6/show/

关于javascript - jquery循环 - 即使图像比浏览器窗口宽,也保持幻灯片居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19008068/

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