AndroidCode / code /10144 /10144_4.html
yhzheng1031's picture
Add files using upload-large-folder tool
c32f9a6 verified
raw
history blame
5.29 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Product Detail - Predator Accuracy+</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;
}
/* Top hero section showing product images */
.hero {
position: absolute;
top: 0; left: 0; width: 100%; height: 1500px;
background: #e9eef1;
}
.close-btn {
position: absolute; top: 260px; right: 40px; width: 64px; height: 64px; cursor: pointer;
}
.close-btn svg { width: 100%; height: 100%; }
.vertical-indicator {
position: absolute; right: 26px; top: 720px; width: 12px;
display: flex; flex-direction: column; gap: 40px; align-items: center;
}
.indicator-dash {
width: 6px; height: 40px; background: #000000; border-radius: 3px;
}
.shoe-main, .shoe-sole {
width: 960px; margin-left: 60px; display: flex; align-items: center; justify-content: center;
background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
}
.shoe-main { height: 420px; margin-top: 360px; }
.shoe-sole { height: 360px; margin-top: 40px; }
/* Thumbnail strip overlay */
.thumb-strip {
position: absolute; bottom: 220px; left: 0; width: 100%; height: 220px;
background: rgba(240, 243, 245, 0.9); border-top: 1px solid #dcdcdc; display: flex; align-items: center;
}
.thumb-content { display: flex; align-items: center; gap: 40px; padding: 0 60px; width: 100%; }
.new-pill {
background: #ffffff; border: 2px solid #ffffff; padding: 18px 26px; color: #000; font-weight: 700; letter-spacing: 2px;
}
.thumb {
width: 220px; height: 110px; background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.strip-scroll {
position: absolute; bottom: 170px; left: 50%; transform: translateX(-50%);
width: 160px; height: 14px; background: #d6d9dc; border-radius: 8px;
}
/* Product information section */
.info {
position: absolute; left: 60px; right: 60px; top: 1660px;
}
.fav {
position: absolute; right: 0; top: 0; width: 64px; height: 64px;
}
.title {
margin-top: 20px; margin-right: 100px;
font-size: 56px; font-weight: 800; line-height: 1.1; letter-spacing: 1px; text-transform: uppercase; color: #111;
}
.meta { margin-top: 30px; display: flex; align-items: baseline; gap: 40px; }
.price { font-size: 36px; font-weight: 800; color: #111; }
.tag { font-size: 28px; letter-spacing: 3px; color: #333; text-transform: uppercase; }
.cta {
margin-top: 60px; width: 100%; height: 150px; background: #000; color: #fff; border: none;
font-size: 34px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
display: flex; align-items: center; justify-content: space-between; padding: 0 40px; cursor: pointer;
}
.cta svg { width: 56px; height: 56px; fill: none; stroke: #fff; stroke-width: 6; }
/* Bottom home indicator (visual) */
.home-indicator {
position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
width: 240px; height: 12px; background: #d3d3d3; border-radius: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<div class="hero">
<!-- Close (X) icon -->
<div class="close-btn" aria-label="Close">
<svg viewBox="0 0 64 64">
<line x1="8" y1="8" x2="56" y2="56" stroke="#000" stroke-width="6" stroke-linecap="round"></line>
<line x1="56" y1="8" x2="8" y2="56" stroke="#000" stroke-width="6" stroke-linecap="round"></line>
</svg>
</div>
<!-- Vertical scroll indicator dashes -->
<div class="vertical-indicator">
<div class="indicator-dash"></div>
<div class="indicator-dash" style="opacity: 0.75;"></div>
<div class="indicator-dash" style="opacity: 0.5;"></div>
</div>
<!-- Main product images -->
<div class="shoe-main">[IMG: Predator Cleats - Side View]</div>
<div class="shoe-sole">[IMG: Predator Cleats - Sole View]</div>
<!-- Thumbnail strip -->
<div class="thumb-strip">
<div class="thumb-content">
<div class="new-pill">NEW</div>
<div class="thumb">[IMG: Pink Cleats]</div>
<div class="thumb">[IMG: Green Cleats]</div>
</div>
<div class="strip-scroll"></div>
</div>
</div>
<!-- Product info -->
<div class="info">
<div class="fav" aria-label="Favorite">
<svg viewBox="0 0 64 64">
<path d="M32 55c-1 0-2-.3-2-.3S18 46 12 38c-6-8-5-18 2-23 6-4 14-2 18 4 4-6 12-8 18-4 7 5 8 15 2 23-6 8-20 16-20 16s-1 .3-2 .3z" fill="none" stroke="#000" stroke-width="4" stroke-linejoin="round"></path>
</svg>
</div>
<div class="title">
PREDATOR ACCURACY+<br>
ARTIFICIAL GRASS CLEATS
</div>
<div class="meta">
<div class="price">$300.00</div>
<div class="tag">Performance</div>
</div>
<button class="cta">
<span>SELECT SIZE</span>
<svg viewBox="0 0 64 64">
<path d="M20 12l24 20-24 20" />
</svg>
</button>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html>