File size: 5,238 Bytes
ff1f000 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1080, initial-scale=1.0" />
<title>iPhone 14 Pro Max - Mock</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #000000;
color: #EAEAEA;
}
/* Minimal status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 80px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #FFFFFF;
opacity: 0.9;
font-weight: 600;
font-size: 32px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 24px;
}
.wifi, .battery {
display: inline-flex;
align-items: center;
justify-content: center;
}
.wifi svg, .battery svg {
width: 44px;
height: 44px;
}
/* Header */
.app-header {
position: absolute;
top: 80px; /* below status bar */
left: 0;
right: 0;
height: 160px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
}
.left-group {
display: flex;
align-items: center;
gap: 28px;
}
.title {
font-size: 64px;
font-weight: 700;
color: #E5E5E5;
letter-spacing: -0.5px;
}
.icon-circle {
width: 96px;
height: 96px;
border-radius: 50%;
background: #1E1E1E;
display: flex;
align-items: center;
justify-content: center;
}
.icon-circle svg {
width: 52px;
height: 52px;
stroke: #FFFFFF;
fill: none;
stroke-width: 6;
stroke-linecap: round;
stroke-linejoin: round;
opacity: 0.95;
}
.right-group {
display: flex;
align-items: center;
gap: 28px;
}
/* Loader */
.loader {
position: absolute;
left: 50%;
top: 54%;
transform: translate(-50%, -50%);
width: 180px;
height: 180px;
border-radius: 50%;
border: 18px solid rgba(103, 151, 255, 0.18);
border-top-color: #6FA0FF;
animation: spin 1.1s linear infinite;
box-sizing: border-box;
}
@keyframes spin {
to { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Home indicator */
.home-indicator {
position: absolute;
bottom: 46px;
left: 50%;
transform: translateX(-50%);
width: 360px;
height: 14px;
background: rgba(255,255,255,0.85);
border-radius: 9px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">8:23</div>
<div class="status-right">
<!-- simple placeholders for icons -->
<div class="wifi" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M2 9c5.5-4.7 14.5-4.7 20 0" stroke="#fff" stroke-width="2" fill="none"/>
<path d="M5 12c3.8-3.2 10.2-3.2 14 0" stroke="#fff" stroke-width="2" fill="none"/>
<path d="M8 15c2.1-1.8 5.9-1.8 8 0" stroke="#fff" stroke-width="2" fill="none"/>
<circle cx="12" cy="18" r="1.5" fill="#fff" stroke="none"/>
</svg>
</div>
<div class="battery" aria-hidden="true">
<svg viewBox="0 0 28 16">
<rect x="1" y="3" width="22" height="10" rx="2" ry="2" stroke="#fff" fill="none" stroke-width="2"/>
<rect x="24" y="6" width="3" height="4" rx="1" fill="#fff"/>
<rect x="3.5" y="5.5" width="17.5" height="7" rx="1.5" fill="#fff" opacity="0.95"/>
</svg>
</div>
</div>
</div>
<!-- App header -->
<div class="app-header">
<div class="left-group">
<div class="icon-circle" role="button" aria-label="Menu">
<!-- hamburger -->
<svg viewBox="0 0 24 24">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</div>
<div class="title">iPhone 14 Pro Max</div>
</div>
<div class="right-group">
<div class="icon-circle" role="button" aria-label="Search">
<!-- search -->
<svg viewBox="0 0 24 24">
<circle cx="11" cy="11" r="6.5"></circle>
<path d="M16 16l5 5"></path>
</svg>
</div>
<div class="icon-circle" role="button" aria-label="Camera">
<!-- camera -->
<svg viewBox="0 0 24 24">
<path d="M4 7h5l1.5-2h3L15 7h5v12H4z"></path>
<circle cx="12" cy="13" r="3.5"></circle>
</svg>
</div>
<div class="icon-circle" role="button" aria-label="Cart">
<!-- cart -->
<svg viewBox="0 0 24 24">
<path d="M3 5h2l2.5 10h10l2-7H7"></path>
<circle cx="10" cy="19" r="1.6" fill="#fff" stroke="none"></circle>
<circle cx="17" cy="19" r="1.6" fill="#fff" stroke="none"></circle>
</svg>
</div>
</div>
</div>
<!-- Loader -->
<div class="loader" aria-label="Loading"></div>
<!-- Home indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html> |