Hi Dan, there isn’t anything built in, but you can certainly do this with using a bit of custom jQuery. You could try adding some custom functions using the “before” and after” cycle options.
Here is an example where I had a caption that I wanted to slide in as the image faded in:
before: function () {
$j('.meteor-caption').css('left', -600);
$j('.meteor-caption').animate({left:140}, 1500);
}
Thanks Josh, will give it a try
Dan
Hi Josh
Should I add this code in the meteor-slideshow.php
I added the <p> tag with the caption the “meteor-caption” class
<script type="text/javascript">
jQuery(document).ready(function($){
$.fn.cycle.defaults = {
before: function () {
$j('.meteor-caption').css('left', -600);
$j('.meteor-caption').animate({left:140}, 1500);
}
}
});
</script>
No, that would go in a custom slideshow script.