Sensitive content

This media may contain sensitive content.

正在加载视频...

视频加载失败

A short animation featuring Shego using her boss's shrink gun to shrink an entire City of innocent people.... Another Short Animation Commission is done! (0:33) #size_difference #size_kink #sizetwitter #animation #Shego #breast

159,440 次观看 • 2 年前 •via X (Twitter)

10 条评论

SPACEMARINELOYALIST 的头像
SPACEMARINELOYALIST2 年前

A vr version of this would be amazing 😍

🔞MK-Rinky🔞🇨🇿 的头像
🔞MK-Rinky🔞🇨🇿2 年前

maybe I'll try to play with it when I have time

NekoMMDGTS 的头像
NekoMMDGTS2 年前

I don't think I've seen your animations before and that was surprisingly pretty good. The only thing I'd change is source a different 'screaming crowd' sound, because that one has an extremely obnoxious loop.

🔞MK-Rinky🔞🇨🇿 的头像
🔞MK-Rinky🔞🇨🇿2 年前

I'm aware of that, it's just that it's difficult to find the sounds you need

BradenGTS 的头像
BradenGTS2 年前

Now that is how your celebrate boobs. Awesome work! My first time seeing something you made. Loved it

🔞MK-Rinky🔞🇨🇿 的头像
🔞MK-Rinky🔞🇨🇿2 年前

Ty!

Corrupted Acursieon of Darkness 的头像
Corrupted Acursieon of Darkness2 年前

That was fantastic! Loving giant evil mommy vids!

Ashley The Kat 的头像
Ashley The Kat2 年前

Oh my ♡

c0ntraband 的头像
c0ntraband2 年前

I absolutely love how you made her voice realistically low and deep for that size, it's my absolutely favorite thing with Giantess

Sirhc 的头像
Sirhc2 年前

Giantess Shego being the true monster here. Love it.

相关视频

CSS Tip! 📜 You can use scroll-driven animations to progressively enhance collapsing a floating call to action 🤏 .cta { animation: shrink; animation-timeline: scroll(); animation-range: 0 100px; } @​keyframes shrink { to { width: 48px; } } That's the gist of it. Use the body scroll position with animation-timeline: scroll(). Define the animation-range as when you have scrolled 100px. There's a little more though 🤓 That would "scrub" the width animation. Ideally, you want to trigger that animation. You could animate a custom property with steps() timing and use that to define the width ✨ @​property --scrub { syntax: ' '; inherits: true; initial-value: 0; } body { animation: scrub both steps(1, end); animation-timeline: scroll(); animation-range: 0 100px; } Then transition the --scrub property on the CTA and use it for the width 🤙 .cta { transition: --scrub 0.2s; width: calc(48px + (120px * (1 - (var(--scrub) / 100)))); } Other animations are a matter of preference and timing. For example, you could then make the hand wave, scale down the size, and then slide a gradient across 😉 They have the same structure and technique as the original concept. Waving the hand? 👋 Run it twice, offset the transform-origin. .hand { animation: wave both linear 2; animation-timeline: scroll(); animation-range: 30vh 50vh; transform-origin: 65% 75%; } @​keyframes wave { 50% { rotate: 20deg; } } How's it progressively enhanced? Wrap everything in a @​supports query and a @​media query. If there isn't support, users still get a good experience. It's a floating action button that's circular and already collapsed 🤙 @​supports(animation-timeline: scroll()) { @​media(prefers-reduced-motion: no-preference) {...} } Definitely have a play with the code. Amazing what we're going to be able to do with CSS alone! 🔥 CodePen.IO link below! 👇

jhey ʕ•ᴥ•ʔ

177,902 次观看 • 2 年前