$(function(){
$("#slides").slidesjs({
width: 700,
height: 393
});
});
This site is kept around for archival purposes. ✌️
SlidesJS is a responsive slideshow plug-in for jQuery (1.7.1+) with features like touch and CSS3 transitions. Give it a try above and check out the examples to help you get started adding SlidesJS to your project.
Create dynamic slideshows that adapt to any screen.
Animations that run smoothly on modern devices.
Swipe support that tracks touch movements on supported devices.
Get going fast with the easy-to-use examples.
Want to contribute to SlidesJS? Check it out at GitHub.
<!doctype html>
<head>
<style>
/* Prevents slides from flashing */
#slides {
display:none;
}
</style>
<script src="//code.jquery.com/jquery-latest.min.js"></script>
<script src="jquery.slides.min.js"></script>
<script>
$(function(){
$("#slides").slidesjs({
width: 940,
height: 528
});
});
</script>
</head>
<body>
<div id="slides">
<img src="http://placehold.it/940x528">
<img src="http://placehold.it/940x528">
<img src="http://placehold.it/940x528">
<img src="http://placehold.it/940x528">
<img src="http://placehold.it/940x528">
</div>
</body>