我想在我的网页上播放幻灯片,为此我使用了这段代码:
<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
答案 0 :(得分:0)
它应该是align="center"
,但即使这是不正确的。您应该将CSS用于那种thign,而不是已弃用的标记属性:
#slideshow {
text-align: center;
margin: 0 auto;
}
答案 1 :(得分:0)
align
的{{1}}属性已弃用。
考虑使用<div>
,如果不这样做,请在<div style="text-align:center">
标记周围使用<center>
标记。
尽管如此,正确的<div>
属性为align
而不是"center"
。
答案 2 :(得分:0)
幻灯片似乎对我不起作用,但对于简单的中心对齐,您需要在幻灯片放映时使用宽度,然后只需要边距:0自动; - 左边和右边的自动是这里的诀窍。
像这样:
#slideshow {
position:relative;
height:350px;
width:350px;
margin:0 auto;
}
你可以放弃html中的align =“middle”。
答案 3 :(得分: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>