我设置了 1 的边框,这可能会帮助我找出哪里出错了。我计划在解决居中问题后删除边界。幻灯片放映功能完美,我似乎无法让它们居中。
我搜索了 google 和 SO,并尝试了其他帖子中建议的几个选项,但没有得到任何结果。你能提供的任何建议都会很棒!
查询:
<style type="text/css">
.slideshow { height: 432px; width: 632px; }
.slideshow img { margin:auto; padding: 15px; border: 1px solid #ccc; background-color:#eee;
display:block; margin:auto; }
</style>
<!-- include jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<!-- include Cycle plugin -->
<script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
});
});
</script>
HTML
<table border="5" table padding="25" align="center">
<tr align="center">
<td align="middle">move<div class="slideshow">
</div></td>
</div></td>
</tr>
</table>