Bootstrap历练实例:简单的可折叠
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Bootstrap历练实例:简单的可折叠</title>
<meta charset="utf-8" />
<meta name="viewport"content="width=device-width,initial-scale=1.0" />
<script src="jQuery/jquery-2.1.4.js"></script>
<link rel="stylesheet"href="bootstrap-3.3.5-dist/css/bootstrap.min.css" />
<script src="bootstrap-3.3.5-dist/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container"style="padding:20px">
<button type="button" class="btn btn-default"data-toggle="collapse"data-target="#demo">
简单的折叠
</button>
<div id="demo" class="panel panel-default panel-collapse collapse in">
<div class="panel-heading">
<h4 class="panel-title">日本超音速导弹</h4>
</div>
<div class="panel-body">
中国还定型了一种三军通用的新一代反舰导弹,采用533毫米标准口径的鹰击-18双速多用途反舰导弹。该弹以俄罗斯俱乐部3M54E导弹为基础研制,可以在水面舰艇垂直发射,潜艇鱼雷管发射,岸基导弹发射车发射等多种发射模式,导弹射程300多公里,巡航速度为高亚音速,末端启动火箭发动机,将导弹加速超过3马赫。此外中国还从俄罗斯进口了用于现代级驱逐舰上的“日炙”3M80超音速反舰导弹,以及用于苏-30MKK战斗机的Kh-31P超音速反舰/反辐射导弹。
</div>
</div>
</div>
</body>
</html>