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.
51 lines
1.7 KiB
51 lines
1.7 KiB
13 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>ResponsiveSlides.js · Responsive jQuery Slideshow</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
||
|
<link rel="stylesheet" href="../responsiveslides.css" />
|
||
|
<link rel="stylesheet" href="example.css" />
|
||
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
||
|
<script src="../responsiveslides.min.js"></script>
|
||
|
<script>
|
||
|
jQuery(function() {
|
||
|
// Slideshow 1
|
||
|
$("#slides1").responsiveSlides({
|
||
|
maxwidth: 800
|
||
|
});
|
||
|
|
||
|
// Slideshow 4
|
||
|
$("#slides2").responsiveSlides({
|
||
|
auto: true,
|
||
|
pagination: true,
|
||
|
fade: 300,
|
||
|
maxwidth: 540
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="wrapper">
|
||
|
<h1>ResponsiveSlides.js v1.1</h1>
|
||
|
<h2>Responsive jQuery Slideshow plugin that weights under 1kb</h2>
|
||
|
|
||
|
<!-- Slideshow 1 -->
|
||
|
<ul id="slides1">
|
||
|
<li><img src="1.jpg" alt="" /></li>
|
||
|
<li><img src="2.jpg" alt="" /></li>
|
||
|
<li><img src="3.jpg" alt="" /></li>
|
||
|
</ul>
|
||
|
|
||
|
<!-- Slideshow 2 -->
|
||
|
<ul id="slides2">
|
||
|
<li><a href="#"><img src="1.jpg" alt="" /></a></li>
|
||
|
<li><a href="#"><img src="2.jpg" alt="" /></a></li>
|
||
|
<li><a href="#"><img src="3.jpg" alt="" /></a></li>
|
||
|
</ul>
|
||
|
|
||
|
<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>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|