我正在使用带有随机播放效果的 jQuery Cycle 插件。我希望能够在悬停时放大图像,然后用更大的图像开始幻灯片放映。我尝试了几种不同的 CSS 样式,但还没有运气。看来我可以让它放大,或者我可以让它洗牌,但不能两者兼而有之。
这是我到目前为止所得到的:
<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>