Fix by Jonas for iOS devices
This commit is contained in:
parent
78b0a161af
commit
af7815e858
1 changed files with 51 additions and 19 deletions
58
view.php
58
view.php
|
@ -19,38 +19,65 @@ if ($baseurl[-1] != "/") $baseurl += "/";
|
|||
?>
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<style>
|
||||
ul {
|
||||
list-style-type: none;
|
||||
height: 52px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
background-color: #333;
|
||||
flex: 0 0 auto;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
li {
|
||||
float: left;
|
||||
height: auto;
|
||||
position: relative;
|
||||
position: absolute;
|
||||
font-family: "sans-serif";
|
||||
}
|
||||
|
||||
li.right {
|
||||
float: right;
|
||||
margin: 4px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
li.logo {
|
||||
left: 0;
|
||||
margin-left: 1em;
|
||||
margin-right: 1em;
|
||||
padding-top: 6px;
|
||||
padding-bottom: 6px;
|
||||
line-height: 52px;
|
||||
height: 52px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
li.title {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-left: 72px;
|
||||
padding-right: 52px;
|
||||
height: 52px;
|
||||
}
|
||||
|
||||
li.title .container {
|
||||
position:relative;
|
||||
height:52px;
|
||||
}
|
||||
|
||||
li.title .text {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
|
||||
li.right {
|
||||
top: 0;
|
||||
right: 0;
|
||||
margin: 4px;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
li.logo img {
|
||||
display: block;
|
||||
height: 100%;
|
||||
|
@ -58,12 +85,10 @@ li.logo img {
|
|||
height: 40px;
|
||||
}
|
||||
|
||||
li a,span {
|
||||
li a,.text {
|
||||
display: block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
line-height: 52px;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
|
@ -78,10 +103,17 @@ li a.hover:hover {
|
|||
body {
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* prevent overscroll */
|
||||
html,body {
|
||||
position: fixed;
|
||||
overflow: hidden;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
iframe {
|
||||
flex: 1 1 auto;
|
||||
border: 0;
|
||||
|
@ -93,7 +125,7 @@ iframe {
|
|||
<body>
|
||||
<ul>
|
||||
<li class="logo"><img src="pix/icon.png"></li>
|
||||
<li><span><?php echo($expcontent->name); ?></span></li>
|
||||
<li class="title"><div class="container"><div class="text"><?php echo($expcontent->name); ?></div></div></li>
|
||||
<li class="right"><a class="hover" href="javascript:history.back();"><i class="fas fa-times"></i></a></li>
|
||||
</ul>
|
||||
<iframe src='<?php echo($baseurl . "view-content/" . $expcontent->contentid . "?autoplay=true"); ?>' allow="autoplay; fullscreen"></iframe>
|
||||
|
|
Loading…
Reference in a new issue