AndroidCode / code /10000 /10000_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
98687c3 verified
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mobile UI - Search with Keyboard</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 120px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #222;
font-weight: 600;
font-size: 44px;
}
.status-right {
display: flex;
align-items: center;
gap: 28px;
}
.icon-small { width: 40px; height: 40px; }
.wifi-icon, .battery-icon {
width: 54px; height: 34px;
}
/* Top search header */
.search-header {
position: absolute;
top: 120px;
left: 0;
width: 1080px;
height: 150px;
display: flex;
align-items: center;
padding: 0 36px;
border-bottom: 2px solid #efefef;
box-sizing: border-box;
}
.back-btn, .camera-btn {
width: 88px;
height: 88px;
display: flex;
align-items: center;
justify-content: center;
}
.search-field {
flex: 1;
color: #9e9e9e;
font-size: 46px;
margin: 0 18px;
}
/* Content area (empty white) */
.content-area {
position: absolute;
top: 270px;
left: 0;
width: 1080px;
height: 1270px;
background: #ffffff;
}
/* Keyboard */
.keyboard {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 860px;
background: #f3f3f5;
border-top: 1px solid #e5e5e7;
box-sizing: border-box;
}
.kbd-tools {
height: 110px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 36px;
color: #3a3a3a;
font-weight: 700;
}
.tool-btn {
height: 84px;
min-width: 100px;
padding: 0 22px;
border-radius: 26px;
background: #ececec;
border: 1px solid #d9d9d9;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
}
.tool-round {
width: 84px; height: 84px;
border-radius: 28px;
background: #ececec;
border: 1px solid #d9d9d9;
display: flex; align-items: center; justify-content: center;
}
.row {
display: flex;
gap: 16px;
padding: 0 36px;
margin-top: 22px;
}
.key {
flex: 1;
height: 120px;
background: #ffffff;
border: 1px solid #e2e2e2;
border-radius: 32px;
display: flex;
align-items: center;
justify-content: center;
color: #1c1c1c;
font-size: 56px;
box-shadow: inset 0 1px 0 #ededed;
}
.key.small { flex: 0 0 90px; }
.key.wide { flex: 2.5; }
.key.medium { flex: 1.3; }
/* Bottom utility row */
.bottom-row {
display: flex;
align-items: center;
gap: 18px;
padding: 24px 36px 28px 36px;
}
.key-circle {
width: 120px; height: 120px;
border-radius: 36px;
background: #dde2e6;
border: 1px solid #c9cdd1;
display: flex; align-items: center; justify-content: center;
font-size: 54px; color: #2a2a2a;
}
.space {
flex: 1;
height: 120px;
background: #ffffff;
border: 1px solid #e2e2e2;
border-radius: 32px;
}
/* Home indicator (very bottom) */
.home-indicator {
position: absolute;
bottom: 18px;
left: 50%;
transform: translateX(-50%);
width: 520px;
height: 12px;
background: #bdbdbd;
border-radius: 8px;
opacity: 0.6;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">10:59</div>
<div class="status-right">
<!-- simple icons -->
<svg class="icon-small" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" fill="#7b7b7b"></circle>
</svg>
<svg class="icon-small" viewBox="0 0 24 24">
<polygon points="4,20 12,4 20,20" fill="#7b7b7b"></polygon>
</svg>
<svg class="icon-small" viewBox="0 0 24 24">
<rect x="5" y="5" width="14" height="14" fill="#7b7b7b"></rect>
</svg>
<svg class="wifi-icon" viewBox="0 0 32 20">
<path d="M2 6c8-8 20-8 28 0" stroke="#7b7b7b" stroke-width="3" fill="none"/>
<path d="M6 10c6-6 14-6 20 0" stroke="#7b7b7b" stroke-width="3" fill="none"/>
<circle cx="16" cy="16" r="3" fill="#7b7b7b"/>
</svg>
<svg class="battery-icon" viewBox="0 0 40 20">
<rect x="1" y="3" width="34" height="14" rx="3" ry="3" stroke="#7b7b7b" fill="none" stroke-width="2"/>
<rect x="4" y="6" width="28" height="8" fill="#7b7b7b"/>
<rect x="35" y="7" width="4" height="6" fill="#7b7b7b"/>
</svg>
</div>
</div>
<!-- Search Header -->
<div class="search-header">
<div class="back-btn">
<svg width="52" height="52" viewBox="0 0 24 24">
<path d="M15 5L6 12l9 7" stroke="#222" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="search-field">Find products...</div>
<div class="camera-btn">
<svg width="64" height="64" viewBox="0 0 24 24">
<rect x="3" y="7" width="18" height="12" rx="2" ry="2" stroke="#222" stroke-width="2" fill="none"/>
<circle cx="12" cy="13" r="4" stroke="#222" stroke-width="2" fill="none"/>
<rect x="7" y="4" width="6" height="3" fill="#222"/>
</svg>
</div>
</div>
<!-- Content area (empty white space like screenshot) -->
<div class="content-area"></div>
<!-- Keyboard -->
<div class="keyboard">
<div class="kbd-tools">
<div class="tool-round">
<svg width="40" height="40" viewBox="0 0 24 24">
<rect x="4" y="4" width="16" height="16" fill="#8c8f93"/>
<path d="M8 8h8v8H8z" fill="#bfc3c7"/>
</svg>
</div>
<div class="tool-btn">๐Ÿ™‚</div>
<div class="tool-btn">GIF</div>
<div class="tool-round">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="8" stroke="#8c8f93" stroke-width="2" fill="none"/>
<path d="M12 8v4l3 3" stroke="#8c8f93" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="tool-round">
<svg width="42" height="42" viewBox="0 0 24 24">
<rect x="4" y="4" width="16" height="16" rx="2" ry="2" stroke="#8c8f93" fill="none"/>
<text x="7" y="16" font-size="10" fill="#8c8f93">G</text>
</svg>
</div>
<div class="tool-round">
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="8" stroke="#8c8f93" stroke-width="2" fill="none"/>
<circle cx="10" cy="10" r="2" fill="#8c8f93"/>
<circle cx="14" cy="10" r="2" fill="#8c8f93"/>
<circle cx="12" cy="14" r="2" fill="#8c8f93"/>
</svg>
</div>
<div class="tool-round">
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M12 17c3 0 5-2 5-5s-2-5-5-5-5 2-5 5 2 5 5 5z" stroke="#8c8f93" fill="none" stroke-width="2"/>
<path d="M19 19l-3-3" stroke="#8c8f93" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
<div class="row">
<div class="key">q</div>
<div class="key">w</div>
<div class="key">e</div>
<div class="key">r</div>
<div class="key">t</div>
<div class="key">y</div>
<div class="key">u</div>
<div class="key">i</div>
<div class="key">o</div>
<div class="key">p</div>
</div>
<div class="row">
<div class="key">a</div>
<div class="key">s</div>
<div class="key">d</div>
<div class="key">f</div>
<div class="key">g</div>
<div class="key">h</div>
<div class="key">j</div>
<div class="key">k</div>
<div class="key">l</div>
</div>
<div class="row">
<div class="key medium">โŒ‚</div>
<div class="key">z</div>
<div class="key">x</div>
<div class="key">c</div>
<div class="key">v</div>
<div class="key">b</div>
<div class="key">n</div>
<div class="key">m</div>
<div class="key medium">โŒซ</div>
</div>
<div class="bottom-row">
<div class="key-circle">?123</div>
<div class="key-circle">,</div>
<div class="key-circle">๐Ÿ™‚</div>
<div class="space"></div>
<div class="key-circle">.</div>
<div class="key-circle">๐Ÿ”</div>
</div>
<div class="home-indicator"></div>
</div>
</div>
</body>
</html>