AndroidCode / code /10119 /10119_5.html
yhzheng1031's picture
Add files using upload-large-folder tool
c32f9a6 verified
raw
history blame
5.16 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>About phone UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #121212; color: #EDEDED;
}
/* Top app bar */
.appbar {
position: absolute;
top: 0; left: 0; right: 0;
height: 220px;
background: #3A3A3A;
}
.status-bar {
height: 84px;
padding: 0 40px;
display: flex; align-items: center; justify-content: space-between;
color: #ffffff; font-size: 36px; letter-spacing: 0.5px;
}
.status-icons { display: flex; align-items: center; gap: 26px; }
.title-row {
height: 136px;
display: flex; align-items: center;
padding: 0 40px;
color: #ffffff;
}
.title-row .title {
font-size: 64px; font-weight: 500; margin-left: 24px;
}
/* Content list */
.content {
position: absolute; top: 240px; left: 0; right: 0;
padding: 0 54px 160px;
}
.section {
margin-bottom: 84px;
}
.label {
font-size: 52px; font-weight: 500; color: #EAEAEA; margin: 0 0 18px 0;
}
.value {
font-size: 38px; color: #BDBDBD; margin: 0;
}
.hint {
font-size: 36px; color: #9AA0A6; margin-top: 8px;
}
.link {
font-size: 42px; color: #8AB4F8; text-decoration: none;
}
/* Bottom floating toast */
.toast {
position: absolute;
left: 150px; right: 150px;
bottom: 300px;
background: #3A3A3A;
color: #FFFFFF;
padding: 28px 36px;
border-radius: 48px;
text-align: center;
font-size: 38px;
box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
/* Gesture bar */
.gesture {
position: absolute; bottom: 72px; left: 50%;
width: 360px; height: 12px;
transform: translateX(-50%);
background: #E6E6E6; border-radius: 8px;
opacity: 0.95;
}
/* Icon helpers */
svg { display: block; }
</style>
</head>
<body>
<div id="render-target">
<!-- Top App Bar -->
<div class="appbar">
<div class="status-bar">
<div class="time">10:28</div>
<div class="status-icons">
<!-- Simple play-in-rect icon -->
<svg width="48" height="48" viewBox="0 0 24 24">
<rect x="2" y="5" width="20" height="14" rx="3" fill="#FFFFFF" opacity="0.9"></rect>
<path d="M10 9l6 3-6 3V9z" fill="#3A3A3A"></path>
</svg>
<!-- Wi-Fi icon -->
<svg width="48" height="48" viewBox="0 0 24 24">
<path d="M2 8c5-5 15-5 20 0" stroke="#FFFFFF" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M5 12c4-4 10-4 14 0" stroke="#FFFFFF" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M8 16c3-3 5-3 8 0" stroke="#FFFFFF" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="12" cy="19" r="1.8" fill="#FFFFFF"/>
</svg>
<!-- Battery icon -->
<svg width="48" height="48" viewBox="0 0 24 24">
<rect x="2" y="7" width="18" height="10" rx="2" stroke="#FFFFFF" stroke-width="2" fill="none"/>
<rect x="4" y="9" width="12" height="6" rx="1.5" fill="#FFFFFF"/>
<rect x="20" y="10" width="2" height="6" rx="1" fill="#FFFFFF"/>
</svg>
</div>
</div>
<div class="title-row">
<!-- Back arrow -->
<svg width="64" height="64" viewBox="0 0 24 24">
<path d="M15.5 5l-7 7 7 7" stroke="#FFFFFF" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="title">About phone</div>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="section">
<h3 class="label">IMEI</h3>
<p class="value">357641620997163</p>
</div>
<div class="section">
<h3 class="label">Android version</h3>
<p class="value">13</p>
</div>
<div class="section">
<a class="link" href="#">Device identifiers</a>
</div>
<div class="section">
<h3 class="label">IP address</h3>
<p class="value">fe80::f2c:82e4:f0f6:692e<br>172.23.0.227</p>
</div>
<div class="section">
<h3 class="label">Wi‑Fi MAC address</h3>
<p class="hint">To view, choose saved network</p>
</div>
<div class="section">
<h3 class="label">Device Wi‑Fi MAC address</h3>
<p class="value">60:b7:6e:3c:29:d2</p>
</div>
<div class="section">
<h3 class="label">Bluetooth address</h3>
<p class="value">60:b7:6e:3c:29:d1</p>
</div>
<div class="section">
<h3 class="label">Up time</h3>
<p class="value">72:49:01</p>
</div>
<div class="section">
<h3 class="label">Send feedback about this device</h3>
</div>
<div class="section">
<h3 class="label">Build number</h3>
<p class="value">TQ2A.230505.002</p>
</div>
</div>
<!-- Floating toast -->
<div class="toast">No need, you are already a developer.</div>
<!-- Gesture bar -->
<div class="gesture"></div>
</div>
</body>
</html>