我正在尝试创建一个我已经完成的幻灯片(图像)(通过复制示例并稍微更改它,但我正在尝试调整图像大小,以便没有滚动选项。我尝试把它放在div中,但这不起作用(无疑是由于我的无能)。我在这里查了很多,发现有几个人问同样/类似的问题(例如How to resize an image to fit in the browser window?),但是我无法应用它。目前我查看时,页面大小是最大图像的大小(当图像大于页面时。)
非常感谢你的帮助。
这是我目前所在的地方:
<!DOCTYPE html>
<html>
<head>
<title>JQuery Cycle Plugin - Basic Demo</title>
<style type="text/css">
.slideshow { height: "100%"; width: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>
</head>
<body>
<div class="slideshow"; style= height: "100%"; width:"auto">
<img src="1.jpg" />
<img src="2.jpg" />
<img src="3.jpg" />
<img src="4.jpg" />
<img src="5.jpg" />
</div>
</body>
</html>