AndroidCode / code /10016 /10016_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Reader Text Settings Overlay</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
#render-target {
position: relative;
overflow: hidden;
width: 1080px;
height: 2400px;
background: #FFFFFF;
}
/* Status bar */
.status-bar {
position: absolute;
left: 0; top: 0;
width: 100%;
height: 120px;
background: #000;
color: #fff;
display: flex;
align-items: center;
padding: 0 32px;
box-sizing: border-box;
font-weight: 600;
}
.sb-time { font-size: 40px; letter-spacing: 1px; }
.sb-icons { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.icon {
width: 42px; height: 42px; display: inline-block;
}
.icon svg { width: 100%; height: 100%; fill: #fff; }
/* Page content behind the modal */
.page {
position: absolute;
left: 64px;
top: 180px;
right: 64px;
color: #111;
}
.title-big {
font-size: 132px;
font-weight: 800;
letter-spacing: -2px;
margin: 80px 0 20px;
}
.subtitle {
font-size: 88px;
font-weight: 700;
margin: 0 0 40px;
}
.author {
font-size: 80px;
font-weight: 800;
color: #8D1212;
margin: 20px 0 120px;
}
.publisher {
width: 680px; height: 180px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
color: #757575;
display: flex; align-items: center; justify-content: center;
font-size: 46px;
margin: 0 auto 40px;
}
.locations {
text-align: center;
font-size: 44px;
color: #333;
}
/* Floating settings modal */
.modal {
position: absolute;
left: 92px;
right: 92px;
top: 300px;
background: #fff;
border-radius: 28px;
box-shadow: 0 24px 40px rgba(0,0,0,0.16), 0 8px 16px rgba(0,0,0,0.08);
padding: 28px 0 24px;
}
.tabs {
display: flex;
gap: 40px;
padding: 22px 40px 0;
font-size: 42px;
font-weight: 600;
color: #666;
}
.tab {
padding: 18px 12px;
border-bottom: 6px solid transparent;
}
.tab.active {
color: #1E88E5;
border-color: #1E88E5;
}
.divider {
height: 1px;
background: #e6e6e6;
margin-top: 14px;
}
.options-row {
display: flex;
gap: 36px;
padding: 36px 40px 14px;
align-items: flex-start;
}
.face-option {
width: 200px;
text-align: center;
color: #666;
font-size: 34px;
}
.face-option .circle {
width: 180px; height: 180px;
border-radius: 50%;
border: 2px solid #d6d6d6;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 18px;
font-size: 120px; font-weight: 700; color: #666;
background: #fff;
}
.face-option.active .circle {
background: #2F7DEB;
border-color: #2F7DEB;
color: #fff;
}
.controls {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px 28px;
padding: 8px 40px 14px;
align-items: center;
}
.control-box {
display: flex; align-items: center; gap: 24px;
}
.btn-square {
width: 210px; height: 120px;
border-radius: 14px;
border: 2px solid #D7D7D7;
display: flex; align-items: center; justify-content: center;
color: #666;
background: #fff;
font-weight: 700; font-size: 60px;
}
.btn-icon { font-weight: 500; font-size: 52px; }
.percent { font-size: 44px; color: #666; }
.footer-row {
display: flex; align-items: center;
padding: 22px 40px 30px;
gap: 24px;
font-size: 44px;
color: #333;
}
.footer-row .spacer { margin-left: 10px; }
.footer-row .right { margin-left: auto; }
.footer-row .chev {
width: 36px; height: 36px;
}
/* Gesture bar */
.gesture {
position: absolute;
bottom: 42px;
left: 50%;
transform: translateX(-50%);
width: 540px;
height: 14px;
background: #777;
border-radius: 8px;
opacity: 0.8;
}
</style>
</head>
<body>
<div id="render-target">
<div class="status-bar">
<div class="sb-time">11:04</div>
<div class="sb-icons">
<!-- simple placeholder icons -->
<span class="icon" title="Notifications">
<svg viewBox="0 0 24 24"><path d="M12 22a2 2 0 0 0 2-2H10a2 2 0 0 0 2 2zm6-6V11a6 6 0 1 0-12 0v5L4 18v2h16v-2l-2-2z"/></svg>
</span>
<span class="icon" title="Wi-Fi">
<svg viewBox="0 0 24 24"><path d="M12 18.5l4-4a5.657 5.657 0 0 0-8 0l4 4zm8-8a12 12 0 0 0-16 0l2 2a9 9 0 0 1 12 0l2-2zm-4-4a16 16 0 0 0-8 0l2 2a12 12 0 0 1 4 0l2-2z"/></svg>
</span>
<span class="icon" title="Battery">
<svg viewBox="0 0 24 24"><path d="M16 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2v2H8v-2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2V4h8v2zM6 8v8h12V8H6z"/></svg>
</span>
</div>
</div>
<div class="page">
<div class="title-big">Real</div>
<div class="subtitle">A ...</div>
<div class="author">Mike Barlow</div>
<div class="publisher">[IMG: O'Reilly Logo]</div>
<div class="locations">Beijing 路 Cambridge 路 Farnham 路 K枚ln 路 Sebastopol 路 Tokyo</div>
</div>
<div class="modal">
<div class="tabs">
<div class="tab active">Text</div>
<div class="tab">Lighting</div>
</div>
<div class="divider"></div>
<div class="options-row">
<div class="face-option active">
<div class="circle">A</div>
<div>Original</div>
</div>
<div class="face-option">
<div class="circle" style="color:#444;">A</div>
<div>Sans</div>
</div>
<div class="face-option">
<div class="circle" style="color:#555;">A</div>
<div>Literata</div>
</div>
<div class="face-option">
<div class="circle" style="color:#555;">A</div>
<div>Merri...</div>
</div>
</div>
<div class="controls">
<div class="control-box">
<div class="btn-square">T</div>
<div class="percent">75%</div>
</div>
<div class="control-box" style="justify-content:flex-end;">
<div class="btn-square">T</div>
</div>
<div class="control-box">
<div class="btn-square btn-icon">
<svg width="80" height="60" viewBox="0 0 24 24"><path fill="#666" d="M3 7h18v2H3V7zm4 4h10v2H7v-2zm-4 4h18v2H3v-2z"/></svg>
</div>
<div class="percent">100%</div>
</div>
<div class="control-box" style="justify-content:flex-end;">
<div class="btn-square btn-icon">
<svg width="80" height="60" viewBox="0 0 24 24"><path fill="#666" d="M4 6h16v2H4V6zm2 5h12v2H6v-2zm-2 5h16v2H4v-2z"/></svg>
</div>
</div>
</div>
<div class="footer-row">
<svg width="48" height="48" viewBox="0 0 24 24"><path fill="#666" d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>
<div class="spacer">Default</div>
<div class="right">
<svg class="chev" viewBox="0 0 24 24"><path fill="#666" d="M7 10l5 5 5-5H7z"/></svg>
</div>
</div>
</div>
<div class="gesture"></div>
</div>
</body>
</html>