0

我想在我的网页中显示幻灯片,为此我使用了以下代码:

<html>
<head>
<style>
#slideshow {
    position:relative;
    height:350px;

}

#slideshow IMG {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
}

#slideshow IMG.active {
    z-index:10;
}

#slideshow IMG.last-active {
    z-index:9;
}
</style>
<script>
function slideSwitch() {
    var $active = $('#slideshow IMG.active');

    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');

    var $next =  $active.next().length ? $active.next()
        : $('#slideshow IMG:first');

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch()", 5000 );
});
</script>
</head>
<body>
<div id="slideshow" align="middle">
    <img src="img/11.jpg" alt="" class="active"  />
    <img src="img/12.jpg" alt="" />
    <img src="img/13.jpg.jpg" alt=""  />
</div>

</body>
</html>

它在我屏幕的左边。但我希望它出现在我网页的中心。

谁能告诉我该怎么做?

谢谢, 问候, Sabyasachi

4

4 回答 4

0


#slideshow#slideshow IMG
中进行了一些更改, 我认为不要在 div 中使用对齐,vs 显示警告对齐属性已过时

<html>
<head>
<style>
#slideshow {
    position:relative;
    height:350px;
    width:500px;
    margin:auto;
}

#slideshow IMG {
    position:absolute;

    z-index:8;
}

#slideshow IMG.active {
    z-index:10;
}

#slideshow IMG.last-active {
    z-index:9;
}
</style>
<script>
function slideSwitch() {
    var $active = $('#slideshow IMG.active');

    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');

    var $next =  $active.next().length ? $active.next()
        : $('#slideshow IMG:first');

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch()", 5000 );
});
</script>
</head>
<body>
<div id="slideshow">
    <img src="img/11.jpg" alt="" class="active"  />
    <img src="img/12.jpg" alt="" />
    <img src="img/13.jpg.jpg" alt=""  />
</div>

</body>
</html>
于 2012-06-11T05:40:56.363 回答
0

应该是align="center",但即使这样也不正确。您应该将 CSS 用于这种类型,而不是弃用的标签属性:

#slideshow {
   text-align: center;
   margin: 0 auto;
}
于 2012-06-11T05:35:21.417 回答
0

align属性<div>已弃用。

考虑使用<div style="text-align:center">,或者失败,在<center>标签周围使用<div>标签。

尽管如此,正确的align属性是"center"not "middle"

于 2012-06-11T05:35:27.397 回答
0

幻灯片似乎对我不起作用,但对于简单的中心对齐,您需要幻灯片上的宽度,然后只需 margin: 0 auto; - 左右自动是这里的诀窍。

像这样:

#slideshow {
position:relative;
height:350px;
width:350px;
margin:0 auto;
}

您可以放弃 align="middle" 在 html 中。

于 2012-06-11T05:37:24.153 回答