AndroidCode / code /10043 /10043_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forward Message UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #FFFFFF; color: #1a1a1a;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
/* Status bar */
.status-bar {
height: 110px;
padding: 0 40px;
display: flex; align-items: center; justify-content: space-between;
color: #2b2b2b;
}
.status-left { font-size: 40px; font-weight: 600; }
.status-right { display: flex; gap: 26px; align-items: center; }
.icon { width: 42px; height: 42px; }
/* App bar */
.appbar {
height: 130px;
padding: 0 30px;
display: flex; align-items: center; gap: 22px;
border-bottom: 1px solid #EAEAEA;
}
.back-btn svg { width: 64px; height: 64px; }
.title { font-size: 52px; font-weight: 700; }
/* Message forward box */
.forward-box {
margin: 26px 30px 18px;
background: #EAF1F8;
border-radius: 28px;
padding: 28px;
}
.message-card {
background: #fff;
border-radius: 22px;
padding: 34px 34px;
border-left: 10px solid #1976D2;
box-shadow: 0 1px 0 rgba(0,0,0,0.06) inset;
position: relative;
}
.message-card .reply-icon {
position: absolute; left: 40px; top: 20px;
width: 40px; height: 40px;
}
.message-text { font-size: 42px; margin-top: 22px; color: #222; }
.optional-input {
margin-top: 26px; font-size: 36px; color: #8a8a8a;
}
/* Search */
.search-field {
margin: 26px 30px;
height: 96px; border-radius: 24px;
background: #F1F1F1;
display: flex; align-items: center;
padding: 0 26px; color: #7a7a7a; font-size: 38px;
}
.search-field svg { width: 44px; height: 44px; margin-right: 16px; }
/* Section headers */
.section-title {
margin: 8px 30px 12px;
color: #808080; font-size: 36px; font-weight: 600;
}
/* List */
.list { margin: 0 30px; }
.list-item {
display: flex; align-items: center;
height: 150px;
}
.avatar {
width: 100px; height: 100px;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; justify-content: center; align-items: center;
color: #757575; font-size: 28px;
border-radius: 20px; /* default rounded-square */
}
.circle { border-radius: 50%; }
.item-info { flex: 1; margin-left: 26px; }
.name {
font-size: 42px; font-weight: 700; display: flex; align-items: center; gap: 14px;
}
.sub { font-size: 32px; color: #8a8a8a; }
.verified {
width: 40px; height: 40px;
display: inline-flex; align-items: center; justify-content: center;
}
.presence {
position: absolute;
width: 18px; height: 18px; border-radius: 50%;
border: 3px solid #fff; background: #37d159;
right: -6px; bottom: -6px;
}
.send-btn {
width: 210px; height: 82px; border-radius: 42px;
background: linear-gradient(135deg, #32B6F2, #0E5EC5);
color: #fff; font-weight: 700; font-size: 36px;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 6px 12px rgba(14,94,197,0.25);
}
.divider {
height: 1px; background: #E5E5E5;
margin-left: 150px;
}
/* Bottom */
.bottom-area {
position: absolute; left: 0; right: 0;
bottom: 0; padding-bottom: 120px;
}
.done-wrap { display: flex; justify-content: center; }
.done-btn {
width: 280px; height: 94px; border-radius: 48px;
background: linear-gradient(135deg, #BFE2FF, #9CC4E8);
color: #4f6e8d; font-size: 40px; font-weight: 800;
display: flex; align-items: center; justify-content: center;
}
.home-indicator {
position: absolute; left: 50%; transform: translateX(-50%);
bottom: 38px; width: 360px; height: 14px; background: #9A9A9A; border-radius: 7px;
opacity: .6;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Top status bar -->
<div class="status-bar">
<div class="status-left">3:13</div>
<div class="status-right">
<!-- simple person/steps icon -->
<svg class="icon" viewBox="0 0 48 48">
<circle cx="24" cy="14" r="8" fill="#707070"/>
<path d="M8 44c3-8 10-12 16-12s13 4 16 12" fill="none" stroke="#707070" stroke-width="4" stroke-linecap="round"/>
</svg>
<!-- wifi -->
<svg class="icon" viewBox="0 0 48 48">
<path d="M6 18c10-10 26-10 36 0" fill="none" stroke="#707070" stroke-width="4" stroke-linecap="round"/>
<path d="M12 24c7-7 17-7 24 0" fill="none" stroke="#707070" stroke-width="4" stroke-linecap="round"/>
<path d="M18 30c4-4 8-4 12 0" fill="none" stroke="#707070" stroke-width="4" stroke-linecap="round"/>
<circle cx="24" cy="36" r="3.5" fill="#707070"/>
</svg>
<!-- battery -->
<svg class="icon" viewBox="0 0 48 48">
<rect x="6" y="12" width="32" height="24" rx="5" ry="5" fill="none" stroke="#707070" stroke-width="4"/>
<rect x="10" y="16" width="24" height="16" rx="4" ry="4" fill="#707070"/>
<rect x="40" y="18" width="4" height="16" rx="2" fill="#707070"/>
</svg>
</div>
</div>
<!-- App bar -->
<div class="appbar">
<div class="back-btn">
<svg viewBox="0 0 48 48">
<path d="M30 10 L16 24 L30 38" fill="none" stroke="#202020" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="title">Forward Message</div>
</div>
<!-- Forward area -->
<div class="forward-box">
<div class="message-card">
<svg class="reply-icon" viewBox="0 0 48 48">
<path d="M28 14 L16 24 L28 34" fill="none" stroke="#1B73D1" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="message-text">How are you doing?</div>
</div>
<div class="optional-input">Type a message here (optional)</div>
</div>
<!-- Search -->
<div class="search-field">
<svg viewBox="0 0 48 48">
<circle cx="22" cy="22" r="12" fill="none" stroke="#8a8a8a" stroke-width="4"/>
<path d="M34 34 L44 44" stroke="#8a8a8a" stroke-width="4" stroke-linecap="round"/>
</svg>
<span>Search people and groups</span>
</div>
<!-- Suggested -->
<div class="section-title">Suggested</div>
<div class="list">
<!-- Item 1 -->
<div class="list-item">
<div class="avatar" style="border-radius: 16px;">
[IMG: User Avatar]
</div>
<div class="item-info">
<div class="name">
Natalie Larson (You)
<span class="verified">
<svg viewBox="0 0 48 48">
<circle cx="24" cy="24" r="20" fill="#1DA1F2"/>
<path d="M16 24l6 6 10-12" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
</div>
<div class="send-btn">Send</div>
</div>
<div class="divider"></div>
<!-- Item 2 -->
<div class="list-item">
<div style="position: relative;">
<div class="avatar circle">[IMG: Avatar]</div>
<div class="presence"></div>
</div>
<div class="item-info">
<div class="name">Richard Wagner</div>
</div>
<div class="send-btn">Send</div>
</div>
<div class="divider"></div>
<!-- Item 3 -->
<div class="list-item">
<div class="avatar circle">[IMG: Avatar]</div>
<div class="item-info">
<div class="name">Amelia miller</div>
</div>
<div class="send-btn">Send</div>
</div>
<div class="divider"></div>
<!-- Item 4 -->
<div class="list-item">
<div class="avatar circle">[IMG: Group Avatar]</div>
<div class="item-info">
<div class="name">Friends</div>
</div>
<div class="send-btn">Send</div>
</div>
<div class="divider"></div>
<!-- Item 5 -->
<div class="list-item">
<div class="avatar" style="border-radius: 22px;">[IMG: Bing Logo]</div>
<div class="item-info">
<div class="name">
Bing
<span class="verified">
<svg viewBox="0 0 48 48">
<circle cx="24" cy="24" r="20" fill="#1DA1F2"/>
<path d="M16 24l6 6 10-12" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
</div>
<div class="send-btn">Send</div>
</div>
<div class="divider"></div>
<!-- Item 6 -->
<div class="list-item">
<div class="avatar" style="border-radius: 22px;">[IMG: Skype Logo]</div>
<div class="item-info">
<div class="name">
Skype
<span class="verified">
<svg viewBox="0 0 48 48">
<circle cx="24" cy="24" r="20" fill="#1DA1F2"/>
<path d="M16 24l6 6 10-12" fill="none" stroke="#fff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
</div>
<div class="send-btn">Send</div>
</div>
</div>
<!-- People section title -->
<div class="section-title" style="margin-top: 18px;">People</div>
<!-- Bottom Done button and home indicator -->
<div class="bottom-area">
<div class="done-wrap">
<div class="done-btn">Done</div>
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html>