FLY
-
SRC
系列
品牌
🛒
0
🌙
🔔
0
首页
/
本季精选
/
商品
JACKET
商品
¥ 0
颜色
墨黑
炭灰
米白
尺码
S
M
L
XL
XXL
数量
−
+
加入购物车
立即购买
顺丰包邮 · 7-15 天送达
7 天无理由退换
正品保障 · 假一赔十
会员积分双倍返还
商品详情
设计理念
本款
延续 FLY-SRC 一贯的都市机能美学,将街头态度与精致剪裁相融合。
面料工艺
主体面料:
,手感细腻、垂感自然
内里:亲肤透气里布
工艺:双轨线车缝 + 锁边处理
配件:YKK 拉链 / 定制金属扣
规格参数
材质
—
版型
—
厚度
—
洗涤说明
—
产地
中国
用户评价
所有评价来自真实购买用户 · 仅供参考
看了又看
/* ============================================ 通用功能包:搜索 / 倒计时 / 尾迹 / 评价 ============================================ */ // 1. 站内搜索 function openSearch() { var modal = document.getElementById('searchModal'); if (modal) { modal.style.display = 'flex'; setTimeout(function(){ var i = document.getElementById('searchInput'); if (i) i.focus(); }, 50); } } function closeSearch() { var m = document.getElementById('searchModal'); if (m) m.style.display = 'none'; } function doSearch() { var q = (document.getElementById('searchInput') || {}).value || ''; if (!q.trim()) { return; } // 跳到主页带搜索参数 location.href = '/#products?q=' + encodeURIComponent(q); } // 2. 秒杀倒计时(demo 24h 倒计时) function startCountdowns() { var els = document.querySelectorAll('.countdown'); if (!els.length) return; // 24 小时后的截止时间(每天重置) var end = new Date(); end.setHours(23, 59, 59, 999); function tick() { var now = new Date(); var diff = end - now; if (diff < 0) diff = 0; var h = Math.floor(diff / 3600000); var m = Math.floor((diff % 3600000) / 60000); var s = Math.floor((diff % 60000) / 1000); els.forEach(function(el) { el.innerHTML = '
' + String(h).padStart(2, '0') + '
:
' + String(m).padStart(2, '0') + '
:
' + String(s).padStart(2, '0') + '
'; }); } tick(); setInterval(tick, 1000); } // 3. 鼠标尾迹(10 个点跟随) function initTrail() { if (window.innerWidth < 1024) return; var dots = []; for (var i = 0; i < 10; i++) { var d = document.createElement('div'); d.className = 'trail-dot'; d.style.cssText = 'position:fixed;width:6px;height:6px;background:#ec4899;border-radius:50%;pointer-events:none;z-index:9998;transition:transform .15s,opacity .2s;opacity:' + (0.8 - i * 0.08) + ';transform:translate(-50%,-50%)'; document.body.appendChild(d); dots.push({el: d, x: 0, y: 0}); } var positions = dots.map(function() { return {x: 0, y: 0}; }); document.addEventListener('mousemove', function(e) { positions.unshift({x: e.clientX, y: e.clientY}); if (positions.length > 20) positions.pop(); }); function anim() { dots.forEach(function(d, i) { var p = positions[i] || positions[positions.length - 1] || {x: 0, y: 0}; d.x += (p.x - d.x) * 0.3; d.y += (p.y - d.y) * 0.3; d.el.style.left = d.x + 'px'; d.el.style.top = d.y + 'px'; }); requestAnimationFrame(anim); } anim(); } // 4. 评价数据(mock) const MOCK_REVIEWS = { 'urban-jacket': [ {name: '陈先生', avatar: '陈', rating: 5, date: '2026-06-20', content: '面料质感非常好,做工精致。穿上去很有型,朋友都说好看。'}, {name: '李女士', avatar: '李', rating: 5, date: '2026-06-18', content: '买了 2 件不同颜色,都很喜欢。版型修身但不紧,舒适度满分。'}, {name: '王先生', avatar: '王', rating: 4, date: '2026-06-15', content: '做工不错,物流也快。就是颜色比图片深一点点。'} ], 'cotton-tee': [ {name: '张女士', avatar: '张', rating: 5, date: '2026-06-22', content: '纯棉面料很舒服,洗了几次也没变形。性价比超高!'}, {name: '刘先生', avatar: '刘', rating: 5, date: '2026-06-19', content: '基本款必备,白色百搭。面料厚实不透明。'} ], 'wool-coat': [ {name: '赵女士', avatar: '赵', rating: 5, date: '2026-06-21', content: '版型超赞,驼色很高级。面料柔软不扎人,冬季必备。'}, {name: '孙先生', avatar: '孙', rating: 5, date: '2026-06-17', content: '质感超出预期,这个价位买到这样的羊毛大衣很值。'} ], 'dad-cap': [ {name: '周先生', avatar: '周', rating: 4, date: '2026-06-20', content: '款式经典,水洗质感很正。帽围可调,戴着舒服。'} ] }; // 5. 暗藏彩蛋:连点 logo 5 次 let easterCount = 0; let easterTimer = null; function initEaster() { var logo = document.querySelector('.logo, [class*="logo"]'); if (!logo) return; logo.style.cursor = 'pointer'; logo.addEventListener('click', function(e) { easterCount++; clearTimeout(easterTimer); easterTimer = setTimeout(function() { easterCount = 0; }, 2000); if (easterCount >= 5) { easterCount = 0; showEaster(); } }); } function showEaster() { var msg = '🎉 彩蛋解锁!\n\n你是 FLY-SRC 第 99,999 位访客!\n\n凭此彩蛋截图联系客服,可领取 50 元无门槛券。'; alert(msg); // 撒花 for (var i = 0; i < 30; i++) { setTimeout(function() { createConfetti(); }, i * 30); } } function createConfetti() { var c = document.createElement('div'); var colors = ['#ec4899', '#f9a8d4', '#fce7f3', '#fff']; c.style.cssText = 'position:fixed;top:-20px;left:' + Math.random() * 100 + '%;width:10px;height:14px;background:' + colors[Math.floor(Math.random() * colors.length)] + ';transform:rotate(' + Math.random() * 360 + 'deg);z-index:9999;pointer-events:none;transition:top 2s ease-in,opacity 2s'; document.body.appendChild(c); setTimeout(function() { c.style.top = '110vh'; c.style.opacity = '0'; }, 50); setTimeout(function() { c.remove(); }, 2200); }