AndroidCode / code /10006 /10006_34.html
yhzheng1031's picture
Add files using upload-large-folder tool
98687c3 verified
<html>
<head>
<meta charset="utf-8">
<title>Fitbit Setup - Please Wait</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: linear-gradient(#177f86, #0b5560);
color:#ffffff;
}
/* Status bar */
.status-bar{
position:absolute;
top:0;
left:0;
width:100%;
height:120px;
background:#6f6f6f;
color:#fff;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 40px;
box-sizing:border-box;
font-weight:600;
}
.status-left{
font-size:48px;
letter-spacing:1px;
}
.status-right{
display:flex;
align-items:center;
gap:30px;
}
.icon-dot{
width:16px;height:16px;background:#fff;border-radius:50%;
}
.icon-wifi svg, .icon-battery svg{
display:block;
}
.icon-wifi svg{width:60px;height:40px;}
.icon-battery svg{width:50px;height:40px;}
/* Headings */
.headline{
position:absolute;
top:280px;
width:100%;
text-align:center;
font-size:96px;
font-weight:700;
}
.subhead{
position:absolute;
top:390px;
width:100%;
text-align:center;
font-size:42px;
color:#cfe9ea;
}
/* Phone illustration placeholder */
.phone-illustration{
position:absolute;
left:50%;
transform:translateX(-50%);
top:520px;
width:820px;
height:1250px;
background:#E0E0E0;
border:1px solid #BDBDBD;
border-radius:48px;
display:flex;
align-items:center;
justify-content:center;
color:#757575;
box-shadow:0 30px 80px rgba(0,0,0,0.35);
text-align:center;
font-size:40px;
}
/* Modal */
.modal{
position:absolute;
left:50%;
transform:translateX(-50%);
top:1040px;
width:880px;
height:280px;
background:#ffffff;
border-radius:22px;
box-shadow:0 20px 60px rgba(0,0,0,0.35);
display:flex;
align-items:center;
gap:40px;
padding:0 60px;
color:#333;
}
.spinner{
width:120px;
height:120px;
border-radius:50%;
border:14px solid #79c7c9;
border-top-color:transparent;
border-right-color:transparent;
animation:spin 1.6s linear infinite;
}
@keyframes spin{
to{transform:rotate(360deg);}
}
.modal-text{
font-size:54px;
color:#3a3a3a;
}
/* Bottom buttons */
.bottom-actions{
position:absolute;
left:0;
right:0;
bottom:160px;
display:flex;
flex-direction:column;
align-items:center;
gap:34px;
padding:0 80px;
box-sizing:border-box;
}
.btn{
width:920px;
height:120px;
border-radius:60px;
font-size:38px;
letter-spacing:1px;
text-align:center;
line-height:120px;
font-weight:700;
}
.btn-outline{
color:#cfe9ea;
background:rgba(255,255,255,0.16);
border:1px solid rgba(255,255,255,0.35);
}
.btn-primary{
color:#ffffff;
background:#0c4d56;
border:1px solid rgba(0,0,0,0.15);
}
/* Bottom navigation pill */
.nav-pill{
position:absolute;
left:50%;
transform:translateX(-50%);
bottom:40px;
width:220px;
height:16px;
background:#eaeaea;
border-radius:12px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">10:19</div>
<div class="status-right">
<div class="icon-wifi">
<!-- simple wifi icon -->
<svg viewBox="0 0 24 24">
<path fill="#fff" d="M2 8c5-4 15-4 20 0l-2 2c-4-3-12-3-16 0L2 8zm4 5c3-2 9-2 12 0l-2 2c-2-1-6-1-8 0l-2-2zm4 5l2 2 2-2c-2-2-4-2-6 0z"/>
</svg>
</div>
<div class="icon-battery">
<!-- simple battery icon -->
<svg viewBox="0 0 24 24">
<rect x="1" y="6" width="18" height="12" fill="none" stroke="#fff" stroke-width="2"/>
<rect x="3" y="8" width="12" height="8" fill="#fff"/>
<rect x="19" y="10" width="3" height="4" fill="#fff"/>
</svg>
</div>
</div>
</div>
<!-- Hero Text -->
<div class="headline">Nice.</div>
<div class="subhead">You are now on your way to better health.</div>
<!-- Phone Illustration -->
<div class="phone-illustration">[IMG: Phone screen showing Fitbit app]</div>
<!-- Modal -->
<div class="modal">
<div class="spinner"></div>
<div class="modal-text">Please wait...</div>
</div>
<!-- Bottom Actions -->
<div class="bottom-actions">
<div class="btn btn-outline">SEE WHAT FITBIT TRACKERS CAN DO</div>
<div class="btn btn-primary">SET UP YOUR PHONE</div>
</div>
<!-- Bottom navigation pill -->
<div class="nav-pill"></div>
</div>
</body>
</html>