目前,我有一个滑块,其中的图像在调整窗口大小时会重新调整大小。图像重新调整大小很好,但是当重新调整大小时,它会显示滑块容器的棕色背景。我希望能够使容器与图像一起重新调整大小,以便根本不显示棕色背景。
到目前为止,滑块的容器具有设定的高度。我设置了高度,因为没有高度,当幻灯片过渡时,容器会跳到高度 0 一秒钟,使布局有点小故障和移动。如果没有设置滑块容器的高度,事情会重新调整大小,但会出现布局故障。
我怎样才能没有布局故障和在不显示背景颜色的情况下重新调整大小的滑块容器?
这是可以找到滑块的站点的链接:http: //lab.stickywebz.com/plantsource/
这是我用于滑块的 javascript:
$(document).ready(function(){
ShowPostDiv(0);
});
function ShowPostDiv(divIndex)
{
$(".herocontent").hide();
if(divIndex >= $(".rotate_hide").length)
{
divIndex = 0;
}
var divPostHtml = $(".rotate_hide:eq("+divIndex+")").html();
$(".herocontent").html(divPostHtml);
$(".herocontent").fadeIn(1000).delay(6500).fadeOut(1000);
divIndex++;
setTimeout("ShowPostDiv("+divIndex+")", 8500);
}
$(document).ready(function(){
ShowPost();
});
这是我用于滑块区域的一些 css:
#hero { width: 100%; position: relative; height: 450px; color: #fff; background-color: #bb9a71; overflow: hidden; }
.hero_img { width: 100%; }
.hero_img img { width: 100%; height: 100%; }