You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.6 KiB

13 years ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
13 years ago
<title>ResponsiveSlides.js &middot; Responsive jQuery Slideshow</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" href="styles.css?v1.03" />
13 years ago
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script src="../responsiveslides.min.js"></script>
13 years ago
<script>
jQuery(function() {
// Slideshow 1
$("#slides").responsiveSlides({
maxwidth: 800
});
13 years ago
// Slideshow 2
$("#slides2").responsiveSlides({
fade: 300,
auto: false,
maxwidth: 540,
namespace: 'anotherslideshow'
});
13 years ago
});
</script>
</head>
<body>
<div id="wrapper">
13 years ago
<h1>ResponsiveSlides.js</h1>
<h2>Responsive jQuery Slideshow plugin that weights under 1kb</h2>
13 years ago
<!-- Slideshow 1 -->
<div id="slides">
<img src="1.jpg" alt="" />
<img src="2.jpg" alt="" />
<img src="3.jpg" alt="" />
</div>
<!-- Slideshow 2 -->
<div id="slides2">
<img src="1.jpg" alt="" />
<img src="2.jpg" alt="" />
<img src="3.jpg" alt="" />
</div>
13 years ago
<a href="http://responsive-slides.viljamis.com/" id="download">See the documentation</a>
<p class="footer">ResponsiveSlides.js is created by <a href="http://viljamis.com">@viljamis</a>. It's released under the MIT license. If you have any questions or feedback you can use the <a href="https://github.com/viljami/ResponsiveSlides.js">GitHub project page</a>.</p>
13 years ago
</div>
</body>
</html>