<html>
<head>
<meta charset="utf-8">
<title>クロスフェード</title>
<script src="http://code.jquery.com/jquery-1.9.1.min.js">
</script>
<script src="jquery.cross-slide.js"></script>
<style>
#slideshow {
width: 500px;
height: 200px;
margin: 100px auto;
}
</style>
</head>
<body>
<div id="slideshow"></div>
<script>
$(function() {
$('#slideshow').crossSlide({
speed: 45,
fade: 1,
}, [
{ src: 'img/cat1.jpg',dir:'up' },
{ src: 'img/cat2.jpg',dir:'down' },
{ src: 'img/cat3.jpg',dir:'up' },
{ src: 'img/dog.jpg',dir:'down' }
])
});
</script>
</body>
</html>