1

我正在尝试制作图像幻灯片。我没有使用 Jquery 的经验,我需要一些帮助。所以基本上我在 div#slideshow 中有一张图片。我想在其中放置多个图像,并借助 Jquery 的强大功能,当用户单击左/右按钮时,它将更改为下一个图像。这是我的 HTML 部分代码 -

<!DOCTYPE html>
<html lang="en">
<head>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style>
body {
background: url(bg.png);
width: 999px;
font-family: 'Open Sans', sans-serif;
margin: 0 auto;
}
p {
color: #222;
}
a {
color: #777;
font-size: 14px;
font-weight: bold;
text-decoration: none;
padding: 10px;
}
#nav {
float: right;
}
#slideshow {
width: 999px;
margin: 100px -50px;
}
#content {
background: #FFF;
padding: 50px;
height: 500px;
border-radius: 1px;
margin: 50px auto;
}
</style>
</head>
<body>
<div id="content">
<div id="nav">
<a href="..">Home</a>
<a href="..">About</a>
<a href="..">Work</a>
<a href="..">Contact</a>
</div>
<div id="slideshow">
<img src="image.jpg" />
</div>
</div>
</body>
</html>
4

1 回答 1

2

查看SlidesJSjQuery 的插件。这是示例页面:http ://www.slidesjs.com/#examples

有更多的插件可以做到这一点(ResponsiveSlides例如),但是这个非常简单,你应该能够弄清楚。

于 2012-09-30T15:13:21.013 回答