天天看点

bootstrap响应式嵌入组件

响应式嵌入组件

<!DOCTYPE html>
<html >
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
    <title>XXX</title>
    <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.css" target="_blank" rel="external nofollow" >
    <link rel="stylesheet" href="css/main.css" target="_blank" rel="external nofollow" >
    <!--[if lt IE 9]>
    <script src="lib/html5shiv/html5shiv.min.js"></script>
    <script src="lib/respond/respond.min.js"></script>
  <![endif]-->
</head>
<body>
<!--不带响应式的媒体-->
    <embed width="400" height="300"
           src="http://www.tudou.com/v/OUG5JBZ8udc/&bid=05&rpid=50797543&resourceI
d=50797543_05_05_99/v.swf" type="application/x-shockwave-flash"
           allowscriptaccess="always" allowfullscreen="true" wmode="opaque"></embed>
<!--16:9的响应式的媒体-->
<div class="embed-responsive embed-responsive-16by9">
    <embed width="100%" height="100%"
           src="http://www.tudou.com/v/OUG5JBZ8udc/&bid=05&rpid=50797543&resourceI
d=50797543_05_05_99/v.swf" type="application/x-shockwave-flash"
           allowscriptaccess="always" allowfullscreen="true" wmode="opaque"></embed>
</div>
<!--4:3的响应式的媒体-->
<div class="embed-responsive embed-responsive-4by3">
    <embed width="100%" height="100%"
           src="http://www.tudou.com/v/OUG5JBZ8udc/&bid=05&rpid=50797543&resourceI
d=50797543_05_05_99/v.swf" type="application/x-shockwave-flash"
           allowscriptaccess="always" allowfullscreen="true" wmode="opaque"></embed>
</div>
<script src="lib/jquery/jquery.js"></script>
<script src="lib/bootstrap/js/bootstrap.js"></script>
<script src="js/main.js"></script>
</body>

</html>
           

继续阅读