Create an animated, glowing, gradient border with CSS

Sdílet
Vložit
  • čas přidán 26. 08. 2024

Komentáře • 129

  • @neonart_
    @neonart_ Před rokem +15

    I am learning a lot through your video thankuu

  • @okosmik
    @okosmik Před rokem +10

    You have made CSS truly fun and understandable, thanks.

    • @SCHTRAM
      @SCHTRAM Před rokem +1

      Also made me want to get back into working as a programmer, but only in UI/Css stuff =D

    • @okosmik
      @okosmik Před rokem

      @@SCHTRAM To dare is to do 😄, just do it, fr.

  • @NeoMatrix1990
    @NeoMatrix1990 Před rokem +7

    I just went down the rotating gradient rabbit hole like a month ago. When I saw your title and thumbnail, I was scared you were going to show something I missed 😅. But I got to the angle property point and decided to go in a different direction because of browser support.
    Keep up the good work! Watching your videos has reignited my interest in front-end developement.

  • @markovujanic
    @markovujanic Před rokem +4

    Kevin,
    This is such a nice format for tutorial. You clearly explained step by step how this works. Thank you

  • @RaymondHulha
    @RaymondHulha Před rokem +3

    This might just be my favorite CSS Video of all time

  • @k16e
    @k16e Před rokem +3

    Mind-blown! Thanks, Kelv!

  • @troubleshot_
    @troubleshot_ Před rokem +3

    I like these shorter style video's where you don't type, but paste! Good job 👍

  • @alichalawi2921
    @alichalawi2921 Před rokem +1

    I barely know your channel and already benefiting from your videos...
    I copied your Cool 3d card that follows the mouse movement using JavaScript as part of my training abd learned so much advanced css coding and tricks
    Just want to say thank you for your enormous efforts and knowledge that ur sharing with us (beginners&students)
    May allah bless you 😘

  • @questionmark9683
    @questionmark9683 Před rokem

    Whenever i watch your video i literally think that why are your videos soo much related to the my problem you are video are very good and the knowledge you provide is literally the nest level thankyou you for providing the knowledge by the way i am from Indian and know ..

  • @blueprint7000
    @blueprint7000 Před rokem +3

    Trully Amazing . I love you !

  • @ThomasGodart
    @ThomasGodart Před rokem +1

    Ok, I'm baffled. That's really good work!

  • @mebamme
    @mebamme Před rokem +4

    I think even in a square box the gradient rotation would have looked slightly off - to have a constant apparent speed along the outline, you'd probably need a circle.

  • @GayaneGasparyan
    @GayaneGasparyan Před rokem

    I just discovered this! Thank you Kevin for making this tutorial!
    A lot of people were asking for a tutorial, so I would like to put your video inside the pen, if you don't mind

  • @FdWebdesign
    @FdWebdesign Před rokem +1

    You're doing great!

  • @Ramnathk
    @Ramnathk Před rokem +17

    Thanks Kevin for these fun tutorials. One question I have however is that with majority of traffic coming from mobile devices how can we translate some of these effects to touch based (micro)interactions?

  • @codershoh
    @codershoh Před rokem +1

    You are the best. Good luck ❤

  • @Jay-qu7rf
    @Jay-qu7rf Před rokem +1

    Wow! Super Awesome!

  • @iamgld
    @iamgld Před 4 měsíci

    Kevinn, I loved this video friend! 🤩

  • @kylevandeusen
    @kylevandeusen Před rokem +1

    Totally gonna use this idea!

  • @angryjellyfish5347
    @angryjellyfish5347 Před rokem +1

    Thank you!!! saw something like this a couple of days ago and was going message you to see if you could do a video on it :)

  • @Sammysapphira
    @Sammysapphira Před 5 měsíci

    What a gorgeous effect

  • @NotJayUU
    @NotJayUU Před rokem +1

    thanks Kevin, always great

  • @akukral
    @akukral Před rokem +1

    Great video! Would love to see more tutorials and/or examples of practical, forward progressive applications of @property.

  • @NerdyDumbProductions
    @NerdyDumbProductions Před 6 měsíci

    This is so freaking COOL!

  • @cristianferreira3350
    @cristianferreira3350 Před rokem +1

    Súper !! More videos like this please!! Thankyou!

  • @PicSta
    @PicSta Před rokem +3

    Hey Kevin, great video. Why aren't you going with the unit dvh instead of vh. Just to keep it right and think at the mobiles devices out there. Apart from that, all good as usual.

  • @padeiroPorAmor
    @padeiroPorAmor Před rokem +1

    once i resolved this making exact the same, but without that property. instead a got 2 div one smaller than the other and the bigger rotating, filled with the colors

  • @bedtimehorrorstoryyoutube
    @bedtimehorrorstoryyoutube Před 9 měsíci

    As always really helpfull :) I will use it in my projects thanks to you!

  • @SvenThielen
    @SvenThielen Před rokem +4

    I found a neat trick to get another type of animation to work in firefox by pasting the code below just after the one described in the video:
    @-moz-document url-prefix() {
    .card::before,
    .card::after {
    background: linear-gradient(
    45deg,
    var(--clr-5), var(--clr-4),
    var(--clr-6), var(--clr-7),
    var(--clr-5), var(--clr-4),
    var(--clr-6), var(--clr-7));
    background-size: 450% 100%;
    animation: ffspin 3s linear infinite;
    }
    }
    @keyframes ffspin {
    0% { background-position:0%; }
    100% { background-position:96%; }
    }
    Colors I used:
    --clr-4: #2d8f85;
    --clr-5: #38CFD9;
    --clr-6: #637c54;
    --clr-7: #4e00c2;

    • @luischiesa4568
      @luischiesa4568 Před 11 měsíci

      Hey man! I’m new coding and I’m not the best English speaker/reader could you help me to fix this problem with the Firefox I put that and still not working

    • @NiltonOliv
      @NiltonOliv Před 8 měsíci +1

      Thanks friend, you are a genius, before it didn't work on Chrome and also on Firefox. You saved me, very beautiful effect.

  • @sealuke2724
    @sealuke2724 Před rokem

    you are always awesome for CSS!!!!!!

  • @vladropotica5687
    @vladropotica5687 Před rokem +2

    Thank you for your videos, i started learning code half a year ago and many of your videos taught me alot

  • @borstenpinsel
    @borstenpinsel Před rokem +2

    Thanks, maybe this helps. I've seen a codepen of this but it didn't work in my html file for some reason. Didn't even move

  • @junsu-ho
    @junsu-ho Před rokem +1

    more effects and cool animations, please

  • @amircahyadi9219
    @amircahyadi9219 Před rokem +1

    Thanx you sir 👍

  • @mellowmarvin
    @mellowmarvin Před rokem

    I love your videos in which you sometimes mistype and ponder. I would like to see more of them again. But maybe that's because I don't belong to the TikTok generation and like to watch you make mistakes. In any case, keep going somehow! Your videos are perfect! A big thank you to you!

  • @rubelhossain8517
    @rubelhossain8517 Před rokem +1

    amazing content

  • @user-is6wp1wt8i
    @user-is6wp1wt8i Před rokem

    Beautiful!

  • @Tom-og3fr
    @Tom-og3fr Před rokem +3

    Good job Kevin. But could you do it with transparent (card) background? 🤔I bet it would look awesome in glassmorphism, but I was not able to figure it out. EDIT: Never mind, YT just redirected me to your other vieo, where you made glowing border with SVG, so it can be done that way. Its funny, you answered my question, even before I managed to ask it :D

    • @Jakiita1
      @Jakiita1 Před rokem

      Which video is this if you dont mind me asking? Im looking for the exact same thing :O

    • @Tom-og3fr
      @Tom-og3fr Před rokem

      @@Jakiita1 its this one czcams.com/video/fcnDBP3k3BE/video.html

  • @twoplustwoequals5733
    @twoplustwoequals5733 Před rokem +3

    does "place-items" not have suggestion "center" for you guys too in VS Code?

  • @CMB696
    @CMB696 Před rokem +1

    I did something similar this a weak ago but it is a big headache 'cause .outer-card > . gradient-border > .main-card and for .outer-card:before for blur aah . And I saw that post few days ago and i thought that i can't , and u did it just with a .card 🤯 it's big brain time;

  • @monikafiori
    @monikafiori Před rokem +4

    the gradient doesn't work in firefox at all - seems like you should first put the gradient value in root as fallback and put houdini property after root

  • @geforcesong
    @geforcesong Před rokem +2

    That's smart solution! however, However, is there a solution that works across all modern browsers? Tried the link, doesn't work on safari, the border doesn't show at all, let alone the animation

  • @ericdimarzio5756
    @ericdimarzio5756 Před 11 měsíci

    Thank you! Great video!

  • @ernststa
    @ernststa Před rokem +5

    Does not work with Firefox unfortunately, unless you remove the property from the gradient

    • @khaledsalah9248
      @khaledsalah9248 Před rokem

      that's exactly the problem I ran into, it's so sad.

    • @issy63ls
      @issy63ls Před rokem

      Same here, i'm stuck on same problem.. how did you fix it?

    • @khaledsalah9248
      @khaledsalah9248 Před rokem

      @@issy63ls
      I think there are 2 fixes,
      first is to write browser specific code
      second is to use javascript for the rotating effect of the gradient.

  • @TechBarAmaBaro4810
    @TechBarAmaBaro4810 Před rokem +1

    In mob&desk app development, of course we need to design the content (background-colors, colors, positions, etc.), So will I need css

  • @danlazer741
    @danlazer741 Před rokem

    Because of you I dont hate front end as much.

  • @sandalivimansa8758
    @sandalivimansa8758 Před rokem

    thank you sooo much kevin

  • @samarthm4582
    @samarthm4582 Před 5 měsíci

    Amazinggggg

  • @penguinxed
    @penguinxed Před rokem +1

    very cool! Hi sir Kevin, I wonder if you are planning to release another chatgpt content especially after the gpt4 announcement? cheers! 😊

  • @haltertopbabe
    @haltertopbabe Před 7 měsíci

    this is so cool thank u

  • @grapy83
    @grapy83 Před rokem

    That was so fun.

  • @alice-smith
    @alice-smith Před rokem +2

    It is possible to fallback to animate the gradient with javascript when @property is not supported?

    • @KevinPowell
      @KevinPowell  Před rokem

      There might even be a polyfill, I haven't looked into it though

  • @fabian3411
    @fabian3411 Před 27 dny

    Great Video! I tried in my project and I find this solution works really well for me, there’s one weird thing though: whenever I use any kind of transform: translate property on the div that has the pseudo elements, the inset one them breaks and the pseudo elements appear in front of the div again, though strangely any text stays visible.
    The fix I came up with is wrapping the div inside another wrapper, so I don’t have to use any translate properties (I have to use them) on the element itself but only on its wrapper.
    Is there an explanation to this seemingly strange behavior?

  • @user-gu5vd2fo9o
    @user-gu5vd2fo9o Před měsícem

    Hi, great video, is it possible to have a solid border, only animate on hover? Thank you

  • @wavyboyjodii
    @wavyboyjodii Před rokem

    Thank You🔥🔥🔥

  • @jamesmcgee1912
    @jamesmcgee1912 Před rokem +1

    Do all major evergreen browsers support this houdini feature?

  • @8koi245
    @8koi245 Před rokem +1

    I was working with some after & before but the inset wasn't working and had to do width 100% & top 0 bottom 0, any idea? using beta chrome on Linux

    • @KevinPowell
      @KevinPowell  Před rokem

      was it position relative, and not absolute? Only thing I can think of.

    • @io1921
      @io1921 Před 10 měsíci

      any solution to this ?

  • @TheTrentmoller
    @TheTrentmoller Před rokem

    So great ! How to make it animated only when appear in the screen.

  • @nomadshiba
    @nomadshiba Před rokem +2

    wonder if we can use border: solid .5rem transparent
    didnt try tho, so the space there is actually be a "border"
    tho there is probably background behind the border so wouldnt work
    wonder if we can make the background start after the border-box

    • @KevinPowell
      @KevinPowell  Před rokem +3

      Oh, that's a good suggestion! Sadly, what happens is the background of the element actually gets drawn under the border. There are ways around that with `background-clip`, but then you lose the border-radius. I think the best solution is probably a --padding custom property on the parent, and use that for the inset value.

    • @nomadshiba
      @nomadshiba Před rokem

      @@KevinPowell padding with background-clip works great

  • @Disorrder
    @Disorrder Před rokem +1

    But you still can animate your css var with js

  • @mangelozzi
    @mangelozzi Před rokem

    Since when did the body start to stretch to the full height of the viewport? It used to be that the html was the full height, and the body was only only as tall as required

  • @josephnwachukwu5775
    @josephnwachukwu5775 Před měsícem

    do you think its possible to do this on an input element

  • @kuhsea
    @kuhsea Před 8 měsíci

    Is there anyway of making the border longer just soley verticly as it doesnt span all my text ;-;

  • @NamanGoel34
    @NamanGoel34 Před rokem

    I think masking might create a more performant version of this. I’ll post a link if I figure it out.

  • @mikemaccana
    @mikemaccana Před rokem +1

    You don’t tell us but is the gradient angle not normally animatable?

  • @moosegoose1282
    @moosegoose1282 Před rokem

    great vid, but do you think Lottie animation would have done better here ? if we had 100 of these, i think it'd be better to switch to lottie rather than rendering css

  • @amirrezazada7491
    @amirrezazada7491 Před rokem +1

    Sir, I have learnt javascript but the problem is, I don't know where to add javascript on my projects.
    Please help

  • @VasilyPavlik
    @VasilyPavlik Před rokem +1

    Brilliant!!!
    But Hoodiny is "under construction" for the last 5 years as I remember, or even more. But anyway, it will work without animation. Very good example of graceful degradation.
    Thank you!

  • @Alexandra-Rex
    @Alexandra-Rex Před 10 měsíci

    I've had something like this, trying to make the center transparent, or to actually have a semi transparent background. Like an RGB animation around a somewhat transparent "screen" where text can be. I've been trying to use it as an alert overlay for streams. Is it ok to play around with your way of doing it to see how it turns out for what I want?

  • @ember2081
    @ember2081 Před rokem +1

    Is it necessary to use both ::before and ::after?

    • @naczelnypsycholog6296
      @naczelnypsycholog6296 Před rokem +1

      one is blur that give effect of light/shadow and the other is moving solid colors

  • @sazer2411
    @sazer2411 Před 6 měsíci

    can we make this only while hovering if yes can any one tell me how

  • @mayurapathak1654
    @mayurapathak1654 Před rokem

    Thankyou

  • @shayanzamani9907
    @shayanzamani9907 Před rokem

    Thanks for your content.
    BTW, is there any way to have a box with animated, gradient border color when the box itself is half-transparent or maybe a glassmorphism effect ?

  • @colbycrawford7586
    @colbycrawford7586 Před rokem

    Having trouble getting the gradient to render after swapping out the discrete degree value with the @property value. Anyone know why this may be?

  • @mykalimba
    @mykalimba Před rokem +1

    It would be nice to speak to how much CPU (GPU?) it takes for modern browsers to manage some of these more advanced rendering features (blur filter, gradients). The last thing we need are uninformed web developers overusing techniques like these without awareness of how it can impact UX for those viewing websites overloaded with "features" like this. I've visited websites where a simple full screen background blur filter causes my laptop fan to spin up like crazy.

  • @naczelnypsycholog6296

    nice I just think that colors pick is not optimal for that kind of effect

  • @SvenThielen
    @SvenThielen Před rokem

    Why is Firefox so far behind on support of these cool features? Can only get it to work with a fallback color. The property does not work and animation neither.

  • @lillenk125
    @lillenk125 Před rokem

    Noice

  • @vojtechkochta6436
    @vojtechkochta6436 Před rokem

    Hi, im using Styled components and i cant find solution for this part
    @property --rotate {
    syntax: "";
    initial-value: 132deg;
    inherits: false;
    }
    @keyframes spin {
    0% {
    --rotate: 0deg;
    }
    100% {
    --rotate: 360deg;
    }
    }
    I also asked chatGPT V4 without positive result :/ Does any1 knows please?

  • @Human_Evolution-
    @Human_Evolution- Před rokem +1

    I used Bing AI to summarize Houdini CSS. Soon you will be summarized too. I should have pasted your transcript. There will likely be an app to turn any video into a AI CZcams Short.

  • @wentallout
    @wentallout Před rokem +1

    this is one of those "you like it, but it's bad UX so nevermind"

  • @tzisorey
    @tzisorey Před rokem

    Now you just need a script to make the gradient follow the direction that the mouse pointer is, and adjust the brightness based on the distance...

  • @Lucas-li2zc
    @Lucas-li2zc Před rokem

    Hi, very cool video ! I don't know why when I put a hover transform on the card by following your steps, the pseudoelements go over my card an hide it... I've tried to play with the z-index of the parent but it don't seems to work neither. If someone has any solutions 👌

    • @0xdeadbabe240
      @0xdeadbabe240 Před 9 měsíci

      what i found as a solution is that the background-color of the container of .card should have an alpha component closer to zero. this solved it for me.

  • @Mattylarochelle
    @Mattylarochelle Před rokem

    Hey Kevin, I really appreciate your videos. I'm having a problem at 2:57 the blur function does not create a shadow around the card but instead it stays contained within the card... Any ideas why that might be happening?

    • @appsenence9244
      @appsenence9244 Před rokem

      Make sure you plar around with the numbers of the size of your container and the blur effect. It doesn't quite work as you would expect it to.

  • @nikolozmacharashvili1212
    @nikolozmacharashvili1212 Před 8 měsíci

    whos the best ha, whos the best - ps. stewie

  • @sohaumghosh9283
    @sohaumghosh9283 Před rokem

    When I'm adding inset: -.5rem and z-index: -1, im loosing the glow effect and an opaque box is coming, can anyone help me out with that?

    • @io1921
      @io1921 Před 10 měsíci

      any solution?

    • @0xdeadbabe240
      @0xdeadbabe240 Před 9 měsíci

      what i found as a solution is that the background-color of the container of .card should have an alpha component closer to zero. this solved it for me.

  • @luischiesa4568
    @luischiesa4568 Před 11 měsíci

    Could someone help me? I want to put this code at Firefox

    • @KevinPowell
      @KevinPowell  Před 11 měsíci +1

      For now, no way, it's not supported as I did it here.

  • @pdxpro7409
    @pdxpro7409 Před měsícem

    its good but its so complex

  • @alexpanteli3651
    @alexpanteli3651 Před rokem +1

    Pretty sure this was inspired by new starter template of Next.js

  • @neonart_
    @neonart_ Před rokem +1

    Present sir

  • @scottmccauley7555
    @scottmccauley7555 Před 6 měsíci

    OK, now here's the question: add any `animation` to the .card and explain why it breaks...

    • @KevinPowell
      @KevinPowell  Před 6 měsíci

      If you're animating, I'm guessing it's a transform? In that case, it's making a new stacking context, so the z-index: -1; on the pseudo-elements no longer goes behind the element.

  • @palantonio8764
    @palantonio8764 Před rokem

    for rotating, why did you use houdini instead of just plain ol' rotate: ;

    • @palantonio8764
      @palantonio8764 Před rokem

      nevermind, i might have misunerstood the assignment

    • @KevinPowell
      @KevinPowell  Před rokem +1

      I looked at what happened at around 3:10 if you tried a rotate, the entire element is rotating around. We need to animate either the angle itself inside the gradient (or you could animate the colors), and to do that we need to use houdini... unless I missed something obvious :D

    • @palantonio8764
      @palantonio8764 Před rokem

      @@KevinPowell yeah, i misunerstood what you wanted to rotate. Love your videos!

  • @prathamesh9990
    @prathamesh9990 Před rokem +2

    Hi sir i have a request for you. There are many people like me who are not native english speakers. It is difficult to understand when you speak fast. If you could speak slower then we can have better understanding

    • @KevinPowell
      @KevinPowell  Před rokem +1

      This is me talking slower 😂. I really do try. You could show the video down a bit in the video settings

    • @naczelnypsycholog6296
      @naczelnypsycholog6296 Před rokem

      @@KevinPowell don't do it Kevin, you don't speak fast at all.

    • @prathamesh9990
      @prathamesh9990 Před rokem

      @@naczelnypsycholog6296 not everyone understand same accent

    • @naczelnypsycholog6296
      @naczelnypsycholog6296 Před rokem +1

      @@prathamesh9990 level up bro, instead of bringing down others ;)

  • @paulm.7967
    @paulm.7967 Před rokem +1

    Kevin, STOPPP.. I was literally looking at Codepens of this! Go to the restroom and see the notification for this video.. SMH spy on cooler people man 😂

  • @nivlekio
    @nivlekio Před rokem

    How many 3's do you know?
    1) 0, 1, 2
    2) 1, 2, 3
    3) X, Y, Z
    4) Red, Green, Blue
    5) Red, Yellow, Blue
    6) Left, Center, Right
    7) Forward, Center, Back
    8) Up, Center, Down
    9) Dot, Line, Dot = Line
    10) Dot, Dot, Dot = Polygon
    11) Sun, Earth, Moon
    12) Air(Gas/Vapour), Earth(Rock/Soil), Water(Liquid/Solid) = Planet Earth
    13) Animals/People of the Air, Animals/People of the Ground, Animals/People of the Water
    14) Chariots of the Air/Space, Chariots of the Ground, Chariots of the Water
    15) Alpha, Beta, Gamma
    16) A, plus, B
    17) A, divide, B
    18) A, multiple, B
    19) A, subtract, B
    20) Speed, Distance, Time
    21) E, M, C2
    22) Force, Mass, Acceleration
    23) H, 2, O
    24) Light Source, Close Distance, Your Eyes
    25) Object1, Object2, Close Distance = Collision/Reflection/Sound/Touch
    26) Open Door, Go though the Door, Close the Door
    27) Open Car Door, Get In Car, Close Car Door
    28) Seconds, Minutes, Hours
    29) Days, Months, Years
    30) 1st, 2nd, 3rd
    31) Gold, Silver, Bronze
    32) Grandmother, Mother, Daughter
    33) Grandfather, Father, Son
    34) Woman, Man, Child
    35) In the womb/egg, out of the womb/egg, dead
    36) Gay/Lesbian, Straight, Bisexual
    37) Nursery School, Primary School, Secondary School
    38) The Object is Empty, Fill the Object, Stop Filling the Object(Glass,Tank,Stomach,Bottle etc)
    39) Accelerating, Decelerating, Constant
    40) Open Lipstick, Put it on, Close Lipstick
    41) Lying down, Standing, Moving
    42) Left Wing Mirror, Rear View Mirror, Right Wing Mirror
    43) God, Angles, Heaven
    44) Satan, Demons, Hell
    45) God, Adam, Ribcage
    46) Adam, Eve, Eden
    47) Adam, Eve, Tree of Knowledge
    48) Satan, Eve, Tree of Knowledge
    49) Judaism, Christianity, Islam
    50) Breathe in, Hold breath, Breathe out
    51) Close eyes, Stare, Blink
    52) Bite, Chew, Swallow
    53) Bladder is Empty, Bladder is Full, Start Peeing
    54) Intestines are Empty, Intestines are Full, Start Pooping
    55) Shoes Off, Shoes On, Shoes Off
    56) Sexuality is Empty, Sexuality is Full, Start Sexual Relif
    57) Feeling Cold, Okay, Feeling Hot
    58) Start, Middle, End
    59) Open Schoolbag, Take something out, Close Schoolbag
    60) Creation, Infinity, Destruction
    61) Minus, Zero, Plus
    62) Home, Event(Bowling, Cinema, Park, Party), Home
    63) Clear Sky, Partially Cloudy, 100% Cloudy
    64) 0%, 50%, 100%
    65) Plane On Ground, Plane In Air, Plane on Ground
    66) Socks Off, Socks On, Socks Off
    67) Heart is beating, Heart has stopped but has been revived, Heart has stopped but cannot be revived
    68) Xbox, Playstation, Nintendo
    69) Windows, Linux, Mac
    70) One Film, Two Films, Three Films
    71) One Goal, Two Goals, Three Goals
    72) Green Light, Amber Light, Red Light
    73) Open Purse, Put something In, Close Purse
    74) Touch Key, Press Key, Release Key
    75) Home, School, Home
    76) Ready, Set, Go
    77) 3, 2, 1 = Lift off/New Year/Count down
    78) Pick up object, Move object, Put object down
    79) Pick up object, Throw object, Object hit ground
    80) Hands in water, Hands above water, Hands in water = Front-crawl
    81) Head above water, Head in water, Header in water = Breaststroke
    82) Hit/Pass/Throw ball, close distance, Hit/Pass/Throw ball = Baseball/Cricket/Hockey/Ice Hockey/Tennis/Rugby
    83) Home, Work, Home
    84) Bible, Torah, Quran
    85) c, c++, c#
    86) AMD, .COM, CPU, DVD, GFX, HDD, RAM, ROM, SSD, PSU, WWW.
    87) Back-End Developer, Front-End Developer, Full Stack Developer
    88) Continents, Islands, Water Bodies
    89) Car in Garage, Car out of Garage, Car in Garage
    90) Open laptop and turn it on, use laptop, Shutdown laptop and close it
    91) Pick up (Crayon, Marker, Paintbrush, Pen, Pencil), move it, Put it down = writing
    92) Bad Dream, No Dreams, Good Dream
    93) Engaged, Married, Divorced
    94) No/short hair, average hair, long hair
    95) Jacket on hanger, Jacket on you, Jacket on hanger
    96) Hat on surface, Hat on head, Hat on surface
    97) Glasses on surface, Glasses on you, Glasses on surface
    98) Raw, Cooking, Cooked
    99) Out of the Cave, In the Cave, Out of the Cave
    100) SSJ1, SSJ2, SSJ3 = DBZ
    101) Open drawer, take out/put in, Close drawer
    102) It's on, it's off, it's not working = (Car, Mobile Phone, Laptop, TV)
    103) It's Awake, it's sleeping/unconscious, it's dead (Animals/People)
    104) BMX, Racing Bike, Mountain Bike
    105) Allah, God, Yahweh
    106) Uranus, Cronus, Zeus
    107) Gaia, Rhea, Hera
    108) Crassus, Julius Caesar, Pompey
    109) Africa, Europe, Asia
    110) HTML, CSS, Javascript

  • @bradenborman4396
    @bradenborman4396 Před rokem

    We need a collab with you and @hyperplexed

  • @JNET_Reloaded
    @JNET_Reloaded Před rokem +1

    it dont look anything like what u demoed to start with i got a codepen about cards!

    • @KevinPowell
      @KevinPowell  Před rokem

      What doesn't look the same? My Codepen goes to my finished code, and I think it's closer to the initial one, just with different colors and a slower animation 🤔