次の順序でスクリプトを含むHTMLがあります
<script src="../static/js/jquery.js" type="text/javascript">
<script src="../static/js/bootstrap.js" type="text/javascript">
<script src="../static/js/slides.js" type="text/javascript">
<script src="../static/js/app.js" type="text/javascript">
画像はdivに関連付けられています
<div id="slideshow">
<div id="slides">
<img src="../static/img/slideshow/01.JPG">
<img src="../static/img/slideshow/02.JPG">
<img src="../static/img/slideshow/03.JPG">
<img src="../static/img/slideshow/04.JPG">
<img src="../static/img/slideshow/05.JPG">
<img src="../static/img/slideshow/06.JPG">
</div>
</div>
どこjquery.js
が JQuery v1.7.2 で、slide.js
最新の slide.js がダウンロードされています。
私にはそれも正しい順序のようです。私のapp.js
することは
$(function(){
$('#slides').slides({
width: 600,
height: 120,
pagination: false,
previous: false
});
$('#slides').slides("play");
});
Firefox と Chrome の両方で試しましたが、うまくいかないようです。すべての画像が次々に表示されます。
ここで私がしていないことは何ですか??