Has anyone worked with the follwoing jquery plugin? I can shift though the images by clicking the arrows but I like images to auto display one after another. I was curious to see if this is an option to run this slide show as autoplay.
this is the websiste to the plugin:
http://www.marcofolio.net/webdesign/jfancytile_a_jquery_tile_shifting_image_viewer_plugin.html
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.jfancytile.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript">
$(document).ready(function () {
// Default
$("#fancytile").jfancytile();
// With options
$("#fancytile").jfancytile({
inEasing: "easeOutBounce", // from jQuery Easing Plugin
outEasing: "easeInCirc", // from jQuery Easing Plugin
inSpeed: 2000,
outSpeed: 3500,
rowCount: 5,
columnCount: 10,
maxTileShift: 5
});
});
</script>
You can use small hack: