1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <meta name="viewport" content="user-scalable=0" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport"
- content="width=device-width,initial-scale=1.0, minimum-scale=0.2 maximum-scale=1.0, user-scalable=no" />
- <style>
- html {
- margin: 0;
- padding: 0;
- overflow: hidden;
- height: 60%;
- }
- body {
- margin: 0;
- padding: 0;
- overflow: hidden;
- height: 100%;
- }
- .content {
- width: 100%;
- height: 100%;
- position: relative;
- background-color: rgba(0,0,0,0.8);
- overflow: hidden;
- }
- .title{
- margin-top: 30px;
- font-size: 35px;
- line-height: 1.5;
- color: #fff;
- text-align: center;
- font-weight: bold;
- }
- .content .detail{
- left: 50%;
- top: 54%;
- width: 80%;
- transform: translate(-50%,-50%);
- position: absolute;
- font-size: 30px;
- text-indent: 2em;
- line-height: 1.5;
- color: #fff;
- letter-spacing: 0.1em;
- }
- </style>
- <body>
- <!--外层div绝对定位,左上定点居中-->
- <div class="content">
- <div class="title">前 言</div>
- <div class="detail">
- 《梦幻契丹》数字展挑选内蒙古地区吐尔基山辽墓及其它辽墓葬出土文物精品,以数字化技术进行交互展示。展览突出数字化文物的多维度展示与解读,对文物从静态品鉴向动态“活化”进行重新诠释。
- </div>
- </div>
- </body>
|