作者nircosk (大侠)
看板Web_Design
标题[问题] bootstrap carousel图片无法转换
时间Mon Jun 8 01:54:26 2015
我是bootstrap的新手,刚download了bootstrap,
但我想用carousel的时候发现图片不会转换,只停在第一张图,不会自动转换用按的也不会转换,
请问是什麽问题~谢谢
<html>
<head>
<title>webpage</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel" data-interval="2000">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="
#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="
#carousel-example-generic" data-slide-to="1"></li>
<li data-target="
#carousel-example-generic" data-slide-to="2"></li>
</ol>
<div style="width: auto; height: 480px; ">
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="img/3.jpg" alt="2015" style="height:480px; margin:auto;">
</div>
<div class="item">
<a href="img/1.jpg"><img src="img/1.jpg" alt="mj/2015" style="height:480px; margin:auto;"></a>
</div>
<div class="item">
<img src="img/2.jpg" alt="carsketch/2014" style="height:480px; margin:auto;">
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="
#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="
#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</body>
</html>
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 140.113.121.113
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Web_Design/M.1433699669.A.565.html
1F:→ Nonegrame: 没载入 jQuery 06/08 10:47