AndroidCode / code /10145 /10145_4.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
5.24 kB
<!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>