我從這裏開始......我試圖設置一個非常簡單的可點擊幻燈片放映,例如在此頁面上使用的橫向而非垂直。可點擊的幻燈片
http://benhulse.com/Look-of-the-Games
我想使用這個插件:
http://jquery.malsup.com/cycle/basic.html
他們的基本腳本是:
<script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
});
});
</script>
我是一個jQuery初學者所以我不知道如何實現腳本中有以下默認選項:
prevNextEvent:'click.cycle',// event which drives the manual transition to the previous or next slide
我不想要任何效果。
謝謝!
謝謝!...我如何使它可點擊? – designlady