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.

80 lines
2.5 KiB

13 years ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>ResponsiveSlides.js &middot; Alternative themes</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
13 years ago
<link rel="stylesheet" href="../../responsiveslides.css" />
<link rel="stylesheet" href="themes.css" />
13 years ago
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="../../responsiveslides.min.js"></script>
13 years ago
<script>
$(function () {
// Slideshow 1
$("#slides1").responsiveSlides({
auto: false,
pagination: true,
nav: true,
fade: 300,
maxwidth: 800
});
// Slideshow 2
$("#slides2").responsiveSlides({
auto: false,
pagination: true,
nav: true,
fade: 300,
maxwidth: 800
});
// Slideshow 3
$("#slides3").responsiveSlides({
auto: false,
pagination: false,
nav: true,
fade: 300,
maxwidth: 800
});
13 years ago
});
13 years ago
</script>
</head>
<body>
<div id="wrapper">
<h1>Three different ways to use next/prev buttons</h1>
13 years ago
<h3>Vertically centered on both sides</h3>
<div class="rslides_container">
<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>
</div>
13 years ago
<h3>Transparent buttons over the left and right side</h3>
<div class="rslides_container">
<ul id="slides2">
<li><img src="../1.jpg" alt="" /></li>
<li><img src="../2.jpg" alt="" /></li>
<li><img src="../3.jpg" alt="" /></li>
</ul>
</div>
<h3>100% height with vertically centered icons</h3>
<div class="rslides_container">
<ul id="slides3">
<li><img src="../1.jpg" alt="" /></li>
<li><img src="../2.jpg" alt="" /></li>
<li><img src="../3.jpg" alt="" /></li>
</ul>
</div>
13 years ago
<a href="http://responsive-slides.viljamis.com/">View ResponsiveSlides.js documentation</a>
13 years ago
</div>
<a href="https://github.com/viljamis/ResponsiveSlides.js/tree/master/demo/themes" class="github"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://a248.e.akamai.net/assets.github.com/img/4c7dc970b89fd04b81c8e221ba88ff99a06c6b61/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub"></a>
13 years ago
</body>
</html>