I am using the jQuery Cycle plugin with the shuffle effect. I would like to be able to enlarge the images on hover then start the slideshow with the larger images. I've tried CSS styling a few different ways but no luck yet. It seems I can get it to enlarge or I can get it to shuffle but not both.
Here is what I've got so far:
<script type="text/javascript">
$(document).ready(function(){
$('#s6').cycle({
fx: 'shuffle',
shuffle: {
top: -50,
left: 145
},
easing: 'easeOutBack',
delay: -1000,
speed: 700,
timeout: 3000,
}).cycle("pause").hover(function() {
$(this).cycle('resume');
},function(){
$(this).cycle('pause');
});
});
</script>
<div id="s6">
<img border="0" src="http://s3.amazonaws.com/dfc_attachments/images/3216165 /pool_house_fireplace_web.JPG" alt="Poolhouse Fireplace" width="150" height="100"/>
<img border="0" src="http://s3.amazonaws.com/dfc_attachments/images/3216093/pool_house_kitchen_web.JPG" alt="Poolhouse Kitchen" width="150" height="100"/>
</div>