AndroidCode / code /1006 /1006_5.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<html>
<head>
<meta charset="utf-8">
<title>Mobile Reading Screen - The War of the Worlds</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:#ffffff;
}
/* Status bar */
.status-bar {
position:absolute; top:0; left:0; right:0;
height:120px; background:#000;
color:#fff;
display:flex; align-items:center;
padding:0 32px;
box-sizing:border-box;
}
.status-left { font-size:44px; font-weight:600; }
.status-right { margin-left:auto; display:flex; gap:18px; align-items:center; }
.status-dot { width:26px; height:26px; background:#fff; border-radius:50%; opacity:0.85; }
.status-tiny { width:18px; height:18px; border-radius:50%; background:#fff; opacity:0.7; }
/* Top app bar */
.app-bar {
position:absolute; top:120px; left:0; right:0;
height:140px; background:#ffffff;
display:flex; align-items:center;
padding:0 28px;
box-sizing:border-box;
border-bottom:1px solid #e9e9e9;
}
.back-btn { width:72px; height:72px; display:flex; align-items:center; justify-content:center; }
.title {
font-size:54px; font-weight:700; color:#1a1a1a; margin-left:6px;
}
.app-actions { margin-left:auto; display:flex; gap:36px; align-items:center; }
.icon-btn { width:72px; height:72px; display:flex; align-items:center; justify-content:center; color:#2c2c2c; }
/* Article content */
.content {
position:absolute; top:260px; left:0; right:0; bottom:0;
padding:0 56px 520px 56px; /* leave space for bottom sheet */
box-sizing:border-box;
overflow:hidden;
}
.article {
font-size:44px; line-height:74px; color:#1f1f1f;
text-align:justify;
word-spacing:14px;
}
/* Bottom sheet */
.bottom-sheet {
position:absolute; left:0; right:0; bottom:0;
height:520px; background:#ffffff;
border-top-left-radius:36px; border-top-right-radius:36px;
box-shadow:0 -8px 24px rgba(0,0,0,0.12);
}
.premium-banner {
position:absolute; left:24px; right:24px; top:-120px;
height:160px; border-radius:28px;
background:linear-gradient(90deg, #75b46f, #2a8b80);
display:flex; align-items:center;
padding:0 32px; box-sizing:border-box;
color:#fff; font-weight:700; font-size:48px;
}
.upgrade-btn {
margin-left:auto; background:#ffffff; color:#1a1a1a;
padding:22px 34px; border-radius:50px; font-size:40px; font-weight:700;
box-shadow:0 2px 6px rgba(0,0,0,0.15);
}
.sheet-content { padding:40px 56px; box-sizing:border-box; }
.slider {
width:160px; height:10px; background:#e5e5e5; border-radius:6px; position:relative; margin:0 auto 36px auto;
}
.slider::after { content:""; position:absolute; left:50%; top:-14px; width:48px; height:48px; background:#cfcfcf; border-radius:50%; box-shadow:0 2px 6px rgba(0,0,0,0.2); }
.font-row { display:flex; align-items:flex-end; gap:42px; }
.font-big { font-size:150px; font-weight:700; color:#1a1a1a; line-height:1; }
.font-caption { margin-top:18px; font-size:40px; color:#777; }
.size-controls { margin-left:auto; display:flex; align-items:center; gap:32px; }
.circ-btn { width:72px; height:72px; border-radius:36px; border:2px solid #c9c9c9; display:flex; align-items:center; justify-content:center; font-size:56px; color:#5a5a5a; }
.theme-row { margin-top:28px; display:flex; gap:34px; align-items:center; }
.theme { width:100px; height:100px; border-radius:50%; border:2px solid #c9c9c9; }
.theme.green { background:#eaf6e4; }
.theme.beige { background:#e7d9c3; }
.theme.black { background:#000; }
.align-row { margin-top:38px; display:flex; gap:40px; align-items:center; }
.tool {
width:120px; height:120px; border-radius:16px; border:3px solid #bfbfbf;
display:flex; align-items:center; justify-content:center; color:#727272; font-size:64px; background:#f7f7f7;
}
/* Home indicator */
.home-indicator {
position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
width:480px; height:18px; background:#000; border-radius:9px; opacity:0.8;
}
/* Simple icons */
svg { display:block; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">3:49</div>
<div class="status-right">
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-tiny"></div>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<div class="back-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<path d="M15 6 L9 12 L15 18" stroke="#222" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="title">The War of the Wo...</div>
<div class="app-actions">
<div class="icon-btn">
<svg width="56" height="56" viewBox="0 0 24 24">
<circle cx="11" cy="11" r="6.5" stroke="#222" stroke-width="2" fill="none"/>
<path d="M17 17 L21 21" stroke="#222" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<div class="icon-btn">
<svg width="56" height="56" viewBox="0 0 24 24">
<path d="M6 4 H18 V21 L12 17 L6 21 Z" fill="none" stroke="#222" stroke-width="2" stroke-linejoin="round"/>
</svg>
</div>
<div class="icon-btn" style="font-size:52px;">⚙️</div>
</div>
</div>
<!-- Article Content -->
<div class="content">
<div class="article">
Herbert George Wells, better known as H. G. Wells, was an English writer best known for such science fiction novels as The Time Machine, The War of the Worlds, The Invisible Man and The Island of Doctor Moreau. He was a prolific writer of both fiction and non-fiction, and produced works in many different genres, including contemporary novels, history, and social commentary. He was also an outspoken socialist. His later works become increasingly political and didactic, and only his early science fiction novels are widely read today. Wells, along with Hugo Gernsback and Jules Verne, is often referred to as one of the “fathers of science fiction."
</div>
</div>
<!-- Bottom Sheet with Premium Banner -->
<div class="bottom-sheet">
<div class="premium-banner">
<div>Go Premium</div>
<div class="upgrade-btn">UPGRADE</div>
</div>
<div class="sheet-content">
<div class="slider"></div>
<div class="font-row">
<div class="font-big">Aa</div>
<div>
<div class="font-caption">Default</div>
<div style="display:flex; gap:8px; margin-top:12px;">
<div style="width:14px; height:14px; background:#999; border-radius:50%;"></div>
<div style="width:14px; height:14px; background:#999; border-radius:50%;"></div>
<div style="width:14px; height:14px; background:#999; border-radius:50%;"></div>
</div>
</div>
<div class="size-controls">
<div class="circ-btn"></div>
<div class="circ-btn">+</div>
</div>
</div>
<div class="theme-row">
<div class="theme green"></div>
<div class="theme beige"></div>
<div class="theme black"></div>
</div>
<div class="align-row">
<div class="tool"></div>
<div class="tool">][</div>
<div class="tool"></div>
</div>
</div>
</div>
<!-- Home indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html>