bootstrap响应式嵌入组件

来源:互联网 发布:天刀杨幂捏脸数据 编辑:程序博客网 时间:2024/05/21 19:24

响应式嵌入组件

<!DOCTYPE html><html lang="zh-CN"><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">    <link rel="stylesheet" href="css/main.css">    <!--[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&resourceId=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&resourceId=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&resourceId=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>