@notcoratilley: #greenscreenvideo 😁

cora🤎
cora🤎
Open In TikTok:
Region: US
Friday 07 January 2022 00:11:05 GMT
1604031
329472
2860
670

Music

Download

Comments

cora_loves_christian
christian_loves_cora :
COMFORT PERSON 🤍<3
2022-01-07 00:14:58
1141
user2235896583
Tap to add name :
cora do you respond anymore 🥺
2022-01-07 00:35:42
949
__mar.sia_
mar.zia :
i swear it's always the Americans mad over a trend/sound💀
2022-01-09 18:43:23
875
aubreygspams
Aubs :
HOW WERE U ALWAYS PRETTY 😭😭💞
2022-01-07 00:11:55
428
iyowafan
red phobia :
NOT YOUR TREND
2022-01-08 11:29:27
456
ava_turner
ava🍸 :
THE DOG AWH
2022-01-07 00:13:57
755
.caleyyy
c a l e y ♡ :
so so pretty
2022-01-07 00:11:57
271
jumpthegunirl
paula :
literally a dream.
2022-01-07 12:57:05
382
mrs.keane
© Mrs.Keane :
u keep me going :))
2022-01-07 00:26:55
458
adviceandtipszz
hi :
do you reply anymore?
2022-01-07 00:27:54
51
olguinhadorasadgirl
Olga :
a trend nao é de cis
2022-01-08 23:28:26
157
.speed..sounds
Jade 🕸 :
CORA TYSM FOR USING MY SOUND
2022-01-07 02:17:28
22
jackiemuetd1e
Jackie :
cis
2022-01-08 20:20:31
510
duudagatinha
Dudinha :
a cis
2022-01-08 23:29:46
144
jules_dasilva
jules ᖭི༏ᖫྀ :
i’m in literal love with your eyes
2022-01-07 00:13:42
15
uh0_7
.. :
make merch
2022-01-07 00:23:46
7
.corasluvv
❤️ C + C ❤️ :
EARLYYYY
2022-01-07 00:13:11
9
love.umore2
Boo💯 :
I know you probably won’t see this but I want you to know how much you have helped me with feeling better about my body as someone who struggles with
2022-01-07 00:23:31
7
username283832929
🫶 :
she looks just like a dream
2022-01-07 02:33:01
7
user3619714872
. :
HEY
2022-01-07 00:19:19
7
dior_nothere
dior :
“the prettiest girl I’ve ever seen💗”
2022-01-07 00:31:58
6
nadineokkehhsss
nadines backup spam :
this girl is absolutely stunning.
2022-01-07 03:20:54
6
strudelmodel
Dani 🦭 :
Congratulations on your transition!
2022-01-08 19:36:02
24
hayvnlovesdrake
★ 𝓱𝓪𝔂𝓿𝓷 🧡👻 :
GORG? UHM YES
2022-01-07 00:12:09
8
coraandchristian33
coraandchristian33 :
AWH I LOVE YOU CORA you made my life 💯 better.
2022-01-07 00:19:38
8
To see more videos from user @notcoratilley, please go to the Tikwm homepage.

Other Videos

How I build with Claude 👇 Academy in bio 🔗 Making an object fly along a path on scroll, step by step: 1. Forget JavaScript animation for this. CSS has a motion path built in and almost nobody uses it. 2. Draw the arc in any vector tool, export the SVG, copy the d attribute out of it. 3. On the element: offset-path: path('M0,400 C300,200 700,150 1200,300'), offset-rotate: auto, offset-distance: 0%. 4. offset-rotate: auto is the whole trick. The object turns to follow the curve on its own, so a nose always points where it is going. 5. Drive it with ScrollTrigger: gsap.to(el, { offsetDistance: '100%', ease: 'none', scrollTrigger: { trigger: section, start: 'top top', end: '+=2000', scrub: 1 } }). 6. Coordinates in the path are unitless and map to the element's own coordinate space, so wrap it in a fixed size container or the curve drifts on resize. 7. The cutout: transparent PNG, then filter: drop-shadow(0 24px 36px rgba(0,0,0,0.45)). drop-shadow hugs the silhouette, box-shadow draws a rectangle. Full bleed photography behind it: 8. object-fit: cover plus object-position: 60% 40%. That second value is what keeps the subject framed when the viewport changes shape. Default centre crops the wrong thing on every phone. 9. Height in 100svh, never 100vh, or mobile browser chrome eats the bottom. 10. Legibility without a grey scrim over everything: text-shadow: 0 2px 24px rgba(0,0,0,0.55) on the headline. It darkens only behind the letters, so the photograph stays clean everywhere else. Composition: 11. Headline top left, body copy bottom right, subject in the middle. That diagonal is what makes the eye travel across the frame instead of stopping at the top. The full prompt behind this build goes in the Academy soon. Save this if you build with photography ✈️ #claude #buildinpublic #webdesign #motion #fyp
How I build with Claude 👇 Academy in bio 🔗 Making an object fly along a path on scroll, step by step: 1. Forget JavaScript animation for this. CSS has a motion path built in and almost nobody uses it. 2. Draw the arc in any vector tool, export the SVG, copy the d attribute out of it. 3. On the element: offset-path: path('M0,400 C300,200 700,150 1200,300'), offset-rotate: auto, offset-distance: 0%. 4. offset-rotate: auto is the whole trick. The object turns to follow the curve on its own, so a nose always points where it is going. 5. Drive it with ScrollTrigger: gsap.to(el, { offsetDistance: '100%', ease: 'none', scrollTrigger: { trigger: section, start: 'top top', end: '+=2000', scrub: 1 } }). 6. Coordinates in the path are unitless and map to the element's own coordinate space, so wrap it in a fixed size container or the curve drifts on resize. 7. The cutout: transparent PNG, then filter: drop-shadow(0 24px 36px rgba(0,0,0,0.45)). drop-shadow hugs the silhouette, box-shadow draws a rectangle. Full bleed photography behind it: 8. object-fit: cover plus object-position: 60% 40%. That second value is what keeps the subject framed when the viewport changes shape. Default centre crops the wrong thing on every phone. 9. Height in 100svh, never 100vh, or mobile browser chrome eats the bottom. 10. Legibility without a grey scrim over everything: text-shadow: 0 2px 24px rgba(0,0,0,0.55) on the headline. It darkens only behind the letters, so the photograph stays clean everywhere else. Composition: 11. Headline top left, body copy bottom right, subject in the middle. That diagonal is what makes the eye travel across the frame instead of stopping at the top. The full prompt behind this build goes in the Academy soon. Save this if you build with photography ✈️ #claude #buildinpublic #webdesign #motion #fyp

About