feat: add BASHIR luxury streetwear brand showcase site#298
Open
bashiren wants to merge 3 commits into
Open
Conversation
Apple-inspired cinematic single-page site for the BASHIR concept brand, demonstrating the ui-ux-pro-max design intelligence applied to a luxury fashion product type. Includes loader, custom cursor, smooth scroll (Lenis), hero word-reveal, silver marquee, scroll-scrubbed story reveal, asymmetric product grid, multi-panel parallax immersion, and minimal footer. GSAP + ScrollTrigger for animations; prefers-reduced-motion respected. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ger sync
Root cause of jitter was a double Lenis raf loop (driven by both
requestAnimationFrame and gsap.ticker), advancing Lenis twice per frame.
JS:
- Single raf via gsap.ticker only; lenis.on('scroll', ScrollTrigger.update)
- gsap.ticker.lagSmoothing(0); ScrollTrigger.config ignoreMobileResize+limitCallbacks
- Cursor: gsap.quickTo (no per-frame style.transform writes)
- All scrub triggers use scrub: 0.6 + invalidateOnRefresh: true
- Reveals use once:true to remove flicker on micro-scroll
- Mobile: parallax disabled on products, intensity halved on immersion
- ScrollTrigger.refresh() runs after all images load → no early/late firing
- Hero parallax: explicit fromTo so entrance and parallax don't collide
CSS:
- Removed scroll-behavior:smooth on html (fights Lenis)
- Lenis recommended class hooks added
- Cursor centered via margin (not transform) so quickTo controls translate
- Removed CSS transform on .hero__image and .product img — owned by GSAP
- Product hover: filter only (transform was wiping GSAP yPercent → snap)
- will-change:transform + translateZ(0) on parallax layers (heroes/panels/marquee)
- Immersion images +10% height to absorb parallax range without gaps
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The previous commit dropped bashir/index.html during the file refresh. Restored from HEAD~1 unchanged — only css/main.js were meant to update. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
.