56 lines
1.4 KiB
HTML
56 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>进房间领门票</title>
|
|
<style>
|
|
.box {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.box img {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.box span {
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: 5rem;
|
|
transform: translateX(-50%);
|
|
width: 6rem;
|
|
height: 1.5rem;
|
|
border-radius: 1.5rem;
|
|
background: url(./images/index2_but.png) no-repeat;
|
|
background-size: 100% 100%;
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="box">
|
|
<img src="./images/index3.png" alt="">
|
|
<span></span>
|
|
</div>
|
|
<script src="../../common/js/flexible.js"></script>
|
|
<script src="../../common/js/jquery-3.2.1.min.js"></script>
|
|
<script src="../../common/js/common2.js"></script>
|
|
<script src="../../common/js/layer.js"></script>
|
|
<script src="../../common/js/vconsole.min.js"></script>
|
|
<script src="./js/ticket.js"></script>
|
|
</body>
|
|
|
|
</html> |