AndroidCode / code /10059 /10059_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Decathlon UI Mock</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 {
height:110px;
padding:18px 30px 0 30px;
box-sizing:border-box;
display:flex; align-items:flex-start; justify-content:space-between;
color:#222;
font-weight:600;
}
.status-left { display:flex; align-items:center; gap:18px; }
.time { font-size:42px; letter-spacing:0.5px; }
.temp { font-size:36px; color:#555; }
.mini-icons { display:flex; align-items:center; gap:14px; }
.status-right { display:flex; align-items:center; gap:20px; }
/* Layout containers */
.screen-body { padding:20px 30px 0 30px; box-sizing:border-box; }
.row { display:flex; gap:28px; }
.top-row .img-card { height:640px; flex:1; }
.bottom-row { margin-top:28px; }
.bottom-row .img-card { height:700px; flex:1; }
.img-card {
background:#E0E0E0;
border:1px solid #BDBDBD;
border-radius:14px;
display:flex; align-items:center; justify-content:center;
color:#757575; font-size:30px; text-align:center; padding:16px;
}
/* Banner */
.banner {
margin-top:28px;
height:800px;
border-radius:16px;
background: linear-gradient(180deg, #9FE3E5 0%, #77D6D9 50%, #5FCFD3 100%);
position:relative;
border:1px solid #BBDCDD;
overflow:hidden;
}
/* subtle wave layers */
.banner::before, .banner::after {
content:"";
position:absolute; left:-120px; right:-120px;
height:380px; border-radius:50%;
background: rgba(255,255,255,0.25);
transform: translateY(140px);
}
.banner::after {
height:460px; transform: translateY(430px);
background: rgba(255,255,255,0.22);
}
.logo-box {
position:absolute; left:50%; top:50%;
transform:translate(-50%, -50%);
width:760px; height:180px;
background:#2E6BD5;
border-radius:12px;
border:2px solid #1D57B8;
display:flex; align-items:center; justify-content:center;
color:#ffffff; font-size:80px; font-weight:800; letter-spacing:4px;
}
.logo-box span { opacity:0.95; }
/* Map/location pin */
.pin {
position:absolute; left:540px; top:1620px; transform:translateX(-50%);
width:58px; height:58px;
background:#3B8BFF; border-radius:50%;
box-shadow:0 6px 12px rgba(0,0,0,0.15);
}
.pin::after {
content:"";
position:absolute; left:50%; bottom:-26px;
width:0; height:0;
border-left:14px solid transparent;
border-right:14px solid transparent;
border-top:26px solid #3B8BFF;
transform:translateX(-50%);
}
.pin::before {
content:"";
position:absolute; left:50%; top:50%;
width:20px; height:20px; background:#ffffff; border-radius:50%;
transform:translate(-50%, -50%);
}
/* Home indicator */
.home-indicator {
position:absolute; left:50%; bottom:40px; transform:translateX(-50%);
width:600px; height:14px; border-radius:8px; background:#BDBDBD;
opacity:0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">
<span class="time">10:34</span>
<span class="temp">14°</span>
<div class="mini-icons">
<!-- simple sun icon -->
<svg width="26" height="26" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="5" fill="#FDB813"></circle>
<g stroke="#FDB813" stroke-width="2">
<line x1="12" y1="1" x2="12" y2="5"></line>
<line x1="12" y1="19" x2="12" y2="23"></line>
<line x1="1" y1="12" x2="5" y2="12"></line>
<line x1="19" y1="12" x2="23" y2="12"></line>
</g>
</svg>
<!-- tiny cloud icon -->
<svg width="28" height="24" viewBox="0 0 24 24">
<path d="M7 17h9a4 4 0 0 0 0-8h-1.3a5 5 0 0 0-9.7 2.2A4 4 0 0 0 7 17z" fill="#A0A0A0"></path>
</svg>
</div>
</div>
<div class="status-right">
<!-- signal bars -->
<svg width="28" height="24" viewBox="0 0 24 24">
<rect x="3" y="13" width="3" height="8" fill="#666"></rect>
<rect x="9" y="9" width="3" height="12" fill="#666"></rect>
<rect x="15" y="5" width="3" height="16" fill="#666"></rect>
</svg>
<!-- Wi-Fi icon -->
<svg width="30" height="24" viewBox="0 0 24 24">
<path d="M2 8c5-5 15-5 20 0" stroke="#666" stroke-width="2" fill="none" />
<path d="M6 12c3-3 9-3 12 0" stroke="#666" stroke-width="2" fill="none" />
<circle cx="12" cy="17" r="2" fill="#666"></circle>
</svg>
<!-- Battery icon -->
<svg width="42" height="24" viewBox="0 0 42 24">
<rect x="1" y="5" width="34" height="14" rx="3" ry="3" stroke="#666" stroke-width="2" fill="none"></rect>
<rect x="4" y="8" width="27" height="8" rx="2" fill="#666"></rect>
<rect x="36" y="9" width="4" height="6" rx="1" fill="#666"></rect>
</svg>
</div>
</div>
<div class="screen-body">
<!-- Top image row -->
<div class="row top-row">
<div class="img-card">[IMG: Child on pool float in blue water]</div>
<div class="img-card">[IMG: Hiker resting on wet rock in rain]</div>
</div>
<!-- Central banner with logo -->
<div class="banner">
<div class="logo-box"><span>DECATHLON</span></div>
</div>
<!-- Bottom image row -->
<div class="row bottom-row">
<div class="img-card">[IMG: Cyclists with road bikes outdoors]</div>
<div class="img-card">[IMG: Woman doing indoor cardio workout]</div>
</div>
</div>
<!-- Location pin overlay -->
<div class="pin"></div>
<!-- Home indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html>