我使用jQuery Cycle,它非常簡單。下面是一個簡單的標記:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
<!-- include jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<!-- include Cycle plugin -->
<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() {
$('.transitionPictures').cycle({
fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
});
});
</script>
</head>
<body>
<!-- TRANSITION SLIDESHOW -->
<div class="transitionPictures">
<img src="image01.jpg" width="400" height="300" alt="" />
<img src="image02.jpg" width="400" height="300" alt="" />
</div>
</body>
</html>
您可以訪問jQuery Cycle site有更多的選項添加到準備腳本。
謝謝,但我想插入一個畫廊,顯示縮略圖和主圖像,而不是幻燈片,我正在尋找一些與我的網站看起來不錯的東西。如果我能夠真正弄清楚我做錯了什麼,而不是尋找更簡單和更簡單的替代品,那將是非常好的。 – user1766878
我很確定我在家裏有一個全球範例,我會盡量晚點發布! – Goose