@se_an.ed: FIRST AM AMV 🔥🔥🔥 || IB: @IHKK || [Edit/AMV] 1440P 60FPS || #gojo #jujutsukaisen #jjk #amv #animeedit

se_an.ed
se_an.ed
Open In TikTok:
Region: CA
Tuesday 21 July 2026 04:34:40 GMT
1139
71
20
9

Music

Download

Comments

sautssamv
𝑆𝑎𝑢𝑡𝑠𝑠 神 :
not bad, but put 30fps and 1080p, quality in vmake/wink.
2026-08-16 09:21:14
2
oliver.day1
King_Cold editz :
Absolutely insane edit quick question though CapCut or a light motion?
2026-07-21 06:04:53
2
ihkkthebest
IHKK :
2026-07-21 07:15:31
1
crisdave39
ATOMIC :
Paano ilagay yung link
2026-07-21 05:05:16
1
zhoulle_zepellijoestar
zhoulle_zepellijoestar :
T’es booster mec
2026-07-21 05:03:25
1
farwildfowl836_fn
🤍Maddison🤍 :
No hate but it’s off beat, and it’s kinda your first edit in a while
2026-07-26 10:23:56
1
To see more videos from user @se_an.ed, please go to the Tikwm homepage.

Other Videos

How I build with Claude 👇 Academy in bio 🔗 Chapter indicator that follows the scroll, step by step: 1. Every section gets data-chapter=
How I build with Claude 👇 Academy in bio 🔗 Chapter indicator that follows the scroll, step by step: 1. Every section gets data-chapter="01" and data-title="Welcome". Read them from the DOM, never keep a second array in your JS. One source of truth or they drift apart the moment you reorder a section. 2. const io = new IntersectionObserver(callback, { rootMargin: '-50% 0px -50% 0px', threshold: 0 }). Those two negative 50% values collapse the viewport into a single line across the middle of the screen. The section crossing that line is the active one. 3. That rootMargin trick is the whole thing. With a normal threshold two sections are visible at once and the label flickers between them. 4. In the callback: entries.forEach(function(e) { if (e.isIntersecting) setChapter(e.target.dataset); }). 5. Swap the text with a mask, not a fade. Wrap the label in overflow: hidden, send the old span to translateY(-100%) and bring the new one in from translateY(100%), duration 0.4s, ease power2.out. 6. Lock the pill width with min-width in ch units, otherwise the box resizes on every chapter and the corner jumps. 7. Always call io.disconnect() on unmount. Observers survive route changes and quietly stack up. Editorial headline that mixes two fonts: 8. Roman for the structural words, italic serif for the emotional ones, inside the same h1. Wrap the italic words in em and set font-style: italic with a different font-family. 9. Optical size matters at this scale: font-variation-settings: 'opsz' 96 on a variable serif. The high contrast strokes only appear at display sizes. 10. line-height: 0.95, letter-spacing: -0.01em, and text-wrap: balance so the two lines end up close in length without you hand breaking them. Deep space background: 11. Not an image. One radial-gradient(ellipse 80% 60% at 50% 40%, #1a3a8f 0%, #050b1f 60%, #02040d 100%) on the section. 12. Stars on top: a canvas with 300 dots, alpha 0.2 to 0.9, radius 0.4 to 1.2, plus a slow sine twinkle. 13. Grain over everything: SVG feTurbulence with type fractalNoise, baseFrequency 0.8, opacity 0.04, mix-blend-mode: overlay. That grain is what stops a big gradient from banding into visible stripes. Save this if you want a page that tells you where you are 🧭 #claude #buildinpublic

About