How to make Eyeballs that Follow You Around

  Рет қаралды 344,422

Beyond Fireship

Beyond Fireship

Күн бұрын

Пікірлер: 794
@artrix909
@artrix909 2 жыл бұрын
"You dont have to be good at math to be a programmer" - fireship 2021 "If you dont know trig, leave" - beyond fireship 2022
@zNermal
@zNermal 2 жыл бұрын
sad
@fanzypantz
@fanzypantz 2 жыл бұрын
if you program in html!
@imPrathamDev
@imPrathamDev 2 жыл бұрын
There should be two explanations multiple personality disorder or just hypocrisy 🤔
@maskettaman1488
@maskettaman1488 2 жыл бұрын
@@imPrathamDev or, you know, it's a joke
@atharvparlikar8765
@atharvparlikar8765 2 жыл бұрын
*in your head
@2231puppy
@2231puppy 2 жыл бұрын
I'd love to see more UI reverse engineering!
@BrunoGomes-su1bk
@BrunoGomes-su1bk 2 жыл бұрын
up
@vladostema
@vladostema 2 жыл бұрын
Yes
@sarcasticdna
@sarcasticdna 2 жыл бұрын
++
@kartikyadav571
@kartikyadav571 2 жыл бұрын
Bro give suggestion then
@erickazevedosousa9909
@erickazevedosousa9909 2 жыл бұрын
UP
@pewds337
@pewds337 2 жыл бұрын
For people who don't know math. To find the slope or inclination of a line from x-axis or horizontal axis you need to y2-y1/x2-x1 here (x1, y1) are the coordinates of first point in this case origin(0, 0) and (x2, y2) are coordinates of cursor. Slope of a line is also the tan of the angle between x-axis and the line. So after finding the slope you basically use a reverse trigonometric function or atan to find the angle. Like tan(45°) = 1 and atan(1) = 45°. You can also convert degrees into radian. 180° = πradian. So 1° = π/180 radian. For x degree radian value is xπ/180 I didn't knew my high school math would be this useful
@killerdroid99
@killerdroid99 2 жыл бұрын
this was simple, atan2(1st-argument, 2nd-arguement), where 1st arg is y2 - y1 and 2nd arg is x2 - x1, ( y = mx + c where m is the slope described as y2 - y1/x2 -x1 if (x1, y1) are origin then m = y2/x2)
@igbagboolaleye6047
@igbagboolaleye6047 2 жыл бұрын
Wow, great explanation
@deathofsuper8835
@deathofsuper8835 2 жыл бұрын
Oh man I was waiting for this. Now I can continue watching the video.
@abdultheseekerofknowledge4453
@abdultheseekerofknowledge4453 2 жыл бұрын
Great man, you should be working in Tesla 👏
@joshpetit
@joshpetit 2 жыл бұрын
If they pull one of these in a coding interview 😵‍
@ThatTrueCJ201
@ThatTrueCJ201 2 жыл бұрын
This effect looks even better when one offsets the eye-holes from the centre of the eye according to the distance from the eye to the cursor (linear and normalized scale). That way, if your cursor is directly on top of the eye, the eye will look straight ahead at the cursor.
@minnow1337
@minnow1337 2 жыл бұрын
canvas too hard 🥱
@adhochero6619
@adhochero6619 2 жыл бұрын
how did you do that?
@adissentingopinion848
@adissentingopinion848 2 жыл бұрын
@@adhochero6619 remove the pupils from the eyes. set the image to be only the pupil. set the base of the eye to be straight center of the eye ball. Calculate dX and dY like he did. Here's the tricky part: normalize the dX and dY by *1/sqrt(dX**2 +dY**2) and scale to radius of eyeball. Two ways to do this now: find the absmin(dX,normalized_scaled_dX) and for dY and apply, or use another bounding function that approaches a limit defined by your normalized value. Think a/(1-e**(-0.5dX)) - a/2, a good ol logistic curve. Just make sure the value is below f(x) = x at all times or else the pupil will look beyond the cursor.
@Henrix1998
@Henrix1998 2 жыл бұрын
@@adissentingopinion848 and now this is why webpages are so slow nowadays
@adissentingopinion848
@adissentingopinion848 2 жыл бұрын
@@Henrix1998 What do you mean? That's like 2 add/subs, 30 mults, and say 100 ops for the logistic curve. Are you suggesting, that your ALU can't run all of this on your Intel Celeron 1.2 GHz? No? Because if you don't decide to load 10.2 MB images every 10 seconds for ads, you computer is actually very fast!
@martinc.7424
@martinc.7424 2 жыл бұрын
Not a front Dev here, pretty happy to have glimpse of how you guys work! Thanks a lot !
@gg-gn3re
@gg-gn3re 2 жыл бұрын
not really how they work. There's a reason so many are freaking out adobe is buying figma... front enders are generally complete morons and use those drag and drop tools and that's about the end of their capability. 10% of them know code, and maybe 1% of those 10% are able to do basic reverse engineering or do this kind of math.. Lots of "busy work" to be done by others
@OFfic3R1K
@OFfic3R1K 2 жыл бұрын
Do you mean the part where we steal someone's idea, code and rehash it into an even worse monstrosity? Yeah, that's front-end for ya. The only part that was left out is when you npm 25GBs worth of frameworks and dependencies to host this bad boy of a web page.
@Niksorus
@Niksorus 2 жыл бұрын
That's crazy stuff too, I could never do that 🤣
@phatakom
@phatakom 2 жыл бұрын
So the maths I learned in college wasn't all of garbage use... Noice
@pixiedev
@pixiedev 2 жыл бұрын
not the math but college professors 🙃.
@KevinArellano
@KevinArellano 2 жыл бұрын
Yay for math
@Skyflairl2p
@Skyflairl2p 2 жыл бұрын
My brain used to shut down the second anyone even mentions algebra (or any math jargon beyond the basics). But hey, In changing my perspective of maths and thinking of it as a coding language it just suddenly makes a lot more sense!
@alireda640
@alireda640 2 жыл бұрын
Trig is high school level
@solastrr
@solastrr 2 жыл бұрын
Wdym college? Trigonometry is highschool level. Algebra and Calculus are college level stuff. I think your situation is beyond them being garbage, they don't even exist on you LMAO
@FieldSpot
@FieldSpot 2 жыл бұрын
After the previous video, we were all waiting for this.
@BiteYt69
@BiteYt69 2 жыл бұрын
3:47, "thats where stackoverfl- I mean trigonometry comes in" Beyond Fireship 2022
@Secreto31126
@Secreto31126 2 жыл бұрын
It would have been funny if you calculated the angles per eye, not from the rectangle, so they could watch your mouse even if it's in their nose
@Cypekeh
@Cypekeh 2 жыл бұрын
Thought so too but I think it could look a bit unnatural, and it would also be more expensive to calculate
@thekwoka4707
@thekwoka4707 2 жыл бұрын
@@Cypekeh well, if he does the calculation only once per frame, that could be improved.
@Secreto31126
@Secreto31126 2 жыл бұрын
@@Cypekeh obviously it will be more expensive, but really that much expensive? Even the simplest notebooks have at least 4/6GB of ram and Celeron CPUs are long gone. I bet it's not that hard to compute 4 atan() every few milliseconds.
@xtunasil0
@xtunasil0 2 жыл бұрын
Also, I think the current implementation will bug if you pass the the mouse between Rick and Morty because of the fact it's not calculated for each eye
@_the_one_1
@_the_one_1 2 жыл бұрын
Reverse engineering is a rare skill! More videos about it please!
@scriptkid4561
@scriptkid4561 Жыл бұрын
????
@wlockuz4467
@wlockuz4467 2 жыл бұрын
I think another fun effect would be to make the eyes bigger as you move the mouse closer to the characters.
@klutch4198
@klutch4198 2 жыл бұрын
Make it happen and post it in the showcase channel in the new fireship discord!
@giancarl021
@giancarl021 2 жыл бұрын
I think you could’ve used the “rad” CSS angle unit to avoid conversion. Btw awesome video
@modolief
@modolief 2 жыл бұрын
Good catch!!
@StephenGillie
@StephenGillie 2 жыл бұрын
That's rad.
@Semtx552
@Semtx552 2 жыл бұрын
I wanna see other UI elements reversed engineered like this
@Dude29
@Dude29 2 жыл бұрын
It's fun to see unorthodox things like this that only show up once in a while and especially fun to see how they are implemented!
@beinyourguard
@beinyourguard 2 жыл бұрын
3:46 "That's where stack overfl---I mean, trigonometry comes in" LOL
@bassjio
@bassjio 2 жыл бұрын
You also don't have to manually convert from radians to degrees, CSS transforms accept "rad" as a unit type.
@davidarnold1881
@davidarnold1881 2 жыл бұрын
Seriously improving the quality of front end Devs. I won't lie I really appreciated you hoisting the vars, micro-optimisations add up =D
@DonaldRecord
@DonaldRecord 2 жыл бұрын
That Stack Overflow joke was -so true- comedy gold
@dhmgroup
@dhmgroup 2 жыл бұрын
Awesome tutorial Jeff
@kaydennguyen2168
@kaydennguyen2168 2 жыл бұрын
I really do appreciate all the humor you put into your videos! Makes it so much more engaging :D
@hojdog
@hojdog 2 жыл бұрын
I love that tip of using devtools to place absolute elements. That is a pro tip, I never thought of that!
@corbulo87
@corbulo87 2 жыл бұрын
The sheer number of times you fit eyeholes into this video filled my heart with joy.
@jobsunday833
@jobsunday833 2 жыл бұрын
Thanks bro finally someone who isn't posting malware or fake stuff, you deserve my subscribe!
@MerkieAE
@MerkieAE 2 жыл бұрын
This is one of the best videos on front-end engineering I've seen holy shit there's so many great pieces of information in here. thank you Mr. fireship
@Mawsdtheking
@Mawsdtheking 2 жыл бұрын
Thank you for these videos! I’m just starting my web dev journey but I plan on going back and rewatching your videos for great ideas and tips when the time comes!
@MoodyDood
@MoodyDood 2 жыл бұрын
"this is where stack overflow- I mean trigonometry comes in" no sir you were right on the first one
@andrewwashburn9357
@andrewwashburn9357 Жыл бұрын
Good style and a fun effect to implement. Thanks for the inspiration Fireship!
@anasrin
@anasrin 2 жыл бұрын
css support many rotation angle units, not only degree but also radian so you can just use the atan2 result
@CaliburPANDAs
@CaliburPANDAs 2 жыл бұрын
100K subs barely a month in. Good for you, Jeff!
@user-gm3eo1dp1y
@user-gm3eo1dp1y 2 жыл бұрын
Questions can come in⬆️ Helpline📲
@andrebotha5270
@andrebotha5270 2 жыл бұрын
Jeff. You have this KZbin tutorial thing nailed. Brilliant script and editing. Funny and informative. Top notch 👏
@jaymehta7681
@jaymehta7681 2 жыл бұрын
More reverse engineering videos please 🔥
@gwerneckpaiva
@gwerneckpaiva 2 жыл бұрын
'Stack over- trigonometry comes in hand' Legend.
@avishkarhande
@avishkarhande 2 жыл бұрын
That's where the StackOver.... I mean Trigonometry comes in 😂😂😂🙌
@DampeS8N
@DampeS8N 2 жыл бұрын
If you did it per eye box you wouldn't have to awkwardly stay around the edges of the image and you could make them go cross-eyed. Easy change.
@gergoradeczki
@gergoradeczki 2 жыл бұрын
- optimizes code - keeps console.log() in the event listener
@DesiMatrixXD
@DesiMatrixXD 2 жыл бұрын
😂
@jakewolf079
@jakewolf079 Жыл бұрын
Thanks man this works flawlessly, I now have a cute moon png that follows my cursor around!
@sharmarahul384
@sharmarahul384 2 жыл бұрын
I love trigonometry. I mostly use it in my HTML5 Canvas with Javascript!
@wlockuz4467
@wlockuz4467 2 жыл бұрын
3:47 I laughed so hard I lost my breath 😂
@devincheca9605
@devincheca9605 2 жыл бұрын
This was such a good video. Both super clever and hilarious. Came for the js, stayed for the Morty.
@alexbinenstock5480
@alexbinenstock5480 2 жыл бұрын
This is such a fantastic idea for a series, keep it goin.
@portal2walkthroughpc
@portal2walkthroughpc 2 жыл бұрын
def will love to see more of this. Please make a playlist of these. Thanks
@MrBrax
@MrBrax 2 жыл бұрын
Nostalgia back to my ActionScript 2 days, used this technique so much :)
@ahmedthebest
@ahmedthebest 2 жыл бұрын
I really love this kind of videos.
@fvbixn
@fvbixn 2 жыл бұрын
Really like those videos, and with your type of humor I could watch these forever. Would love to see more reverse engineering stuff!
@user-gm3eo1dp1y
@user-gm3eo1dp1y 2 жыл бұрын
Our helpline⬆️ Contact me ⬆️
@radofa610
@radofa610 2 жыл бұрын
just finished making my first track! thanks bro for all the help with learning soft soft. much love
@user-gm3eo1dp1y
@user-gm3eo1dp1y 2 жыл бұрын
Questions can come in⬆️📲😊
@creatorsremose
@creatorsremose 2 жыл бұрын
Being old makes in inevitable to witness history repeat itself. That was a very common effect in webpages 15 years ago.
@Sasha32659
@Sasha32659 2 жыл бұрын
Still timeless😁
@ChrisHaupt
@ChrisHaupt 2 жыл бұрын
That hue rotation 🤌
@abdiwadudhaji5800
@abdiwadudhaji5800 11 ай бұрын
i LOVE how you make leaning web development exciting 🥳 I'd also like to see more UI reverse engineering
@zamba2238
@zamba2238 2 жыл бұрын
This worked incredibly well! I can finally play it thanks
@jakethis3355
@jakethis3355 2 жыл бұрын
God damn, your humor is so on point.
@patric_forreal
@patric_forreal 2 жыл бұрын
Daim This is cool, Like how one uses mathematics to solve problems... Pretty cool
@AndrewErwin73
@AndrewErwin73 Жыл бұрын
"If you can't do trigonometry in your head, you really have no business programming in HTML!" Classic
@selvamuthukumarmarimuthu258
@selvamuthukumarmarimuthu258 2 жыл бұрын
This is cool, Jeff!! I would love to see popular sites from awwwards with unique designs or something similar, reverse engineered like this. It would make for a good series. Keep them coming !
@anasammor3408
@anasammor3408 2 жыл бұрын
i love when he tests it out for us
@notemployedatfaang8483
@notemployedatfaang8483 2 жыл бұрын
I would absolutely love to see more reverse engineering! It's really helpful to see the thought process around creating these kinds of elements.
@Exilum
@Exilum 2 жыл бұрын
"That's when stack overflo-" Most relatable moment of the entire video. Have to say, whenever we know exactly what we want, how we want it and just need a bit of math, we all know where to go.
@egecangurdek4982
@egecangurdek4982 2 жыл бұрын
Nice video man, clear and concise explanation! Thanks a lot!
@mtnwildernessfamily
@mtnwildernessfamily 2 жыл бұрын
As soon as I saw your video on PocketBook DB I knew your next video was going to be an eyeball CSS video :)- Love your channel!
@itmecube
@itmecube 2 жыл бұрын
Great breakdown of this effect.
@karimnassar7706
@karimnassar7706 2 жыл бұрын
This guy, love these videos
@GGdevelopment
@GGdevelopment 2 жыл бұрын
I LOVE THE RICK AND MORTY REFERENCES 🙂
@olufemiolufade3325
@olufemiolufade3325 2 жыл бұрын
So thankful for this
@bmehder
@bmehder 2 жыл бұрын
Thank you. May I have another? Subscribed.
@matiasask3774
@matiasask3774 2 жыл бұрын
More content like this please! thank you a lot!
@stims344
@stims344 2 жыл бұрын
Love this kind of stuff man!
@great_tech
@great_tech 2 жыл бұрын
I am giving you a thumbs up just for the scene
@jason.ola_official
@jason.ola_official 2 жыл бұрын
Oh damn this was so instructive to watch as a self searching skill to have ! Keep up the good work man :)
@grahamjoss4643
@grahamjoss4643 2 жыл бұрын
Super cool I’d love to see more simple clever animations
@mo_fakhri
@mo_fakhri 2 жыл бұрын
That's the content that I enjoy using KZbin with
@logiclb
@logiclb 2 жыл бұрын
Love this kind of video. Only complaint is the rick and morty eye pupal should be the very iconic looking asterisk.
@mythacker4365
@mythacker4365 2 жыл бұрын
3:47 Thats where Stackoverflow comes...*errs* Trigonometry comes in. Lol that was a clean 🤣
@svg8x
@svg8x 2 жыл бұрын
YES PLEASE! Make more videos like this.
@QCAlpha-212
@QCAlpha-212 2 жыл бұрын
Since you asked, Apples Marketing pages are just beautiful. There's so many interesting moving parts that you could probably find something to showcase and reverse engineer
@jijgalib3247
@jijgalib3247 2 жыл бұрын
reverse engineering a code is a banner for a developer but its so cool and educating to know. we are looking forward to more of it!
@user-gm3eo1dp1y
@user-gm3eo1dp1y 2 жыл бұрын
Questions can come in⬆️ Helpline📲
@etcode
@etcode 2 жыл бұрын
This is pure gold 👀👁
@dhansb883
@dhansb883 2 жыл бұрын
YES YES WE NEED MORE OF THIS
@BeshoyAtef
@BeshoyAtef 2 жыл бұрын
Yes would love to see more
@pilotkid2011
@pilotkid2011 2 жыл бұрын
My alarm every morning is that eye holes snippet from Rick and Morty
@VeeHeeOfficial
@VeeHeeOfficial 2 жыл бұрын
Awesome as always! More UI tricks vids please!!!
@sangletech
@sangletech 2 жыл бұрын
Love this kind of video man. Keep them coming 😊 Tks
@saalimmohammed1599
@saalimmohammed1599 2 жыл бұрын
I'm a simple man. I hear trigonometry. I stop watching the video
@edathegreat
@edathegreat 2 жыл бұрын
Your video on pocket base changed my life
@rvmsrineu3076
@rvmsrineu3076 2 жыл бұрын
Thank you for sharing this tutorial
@taufiqsept
@taufiqsept 2 жыл бұрын
If you're a game developer, linear algebra and geometry is a must
@ahmadsofwan4069
@ahmadsofwan4069 2 жыл бұрын
Do more content like this!!!
@dhrubajitbhattacharjee9850
@dhrubajitbhattacharjee9850 2 жыл бұрын
"that's where the stackoverflow- i mean trigonometry comes in" 💀
@vikaskumarsingh7667
@vikaskumarsingh7667 2 жыл бұрын
🤣🤣🤣
@Truzian
@Truzian 2 жыл бұрын
these videos are great cause i can just copy your code and look genius
@Rotem_shwartz
@Rotem_shwartz 2 жыл бұрын
As always.. your content is the best
@eboatwright_
@eboatwright_ 2 жыл бұрын
"Now that we have the _real_ programmers here..." Sir I clicked on a _JavaScript_ video
@birdpump
@birdpump 2 жыл бұрын
that effect definitely sold you
@lucamx428
@lucamx428 2 жыл бұрын
I wanted to see the easiest ways of making a cool button animation for submitting forms. all of my ideas where inconvenient. Love your content btw. Also thanks for introducing me to js webframeworks :p
@tesingleton4422
@tesingleton4422 2 жыл бұрын
Please , more of these.
@oskarlaskowski3173
@oskarlaskowski3173 2 жыл бұрын
absolutely awesome tutorial
@quincy6199
@quincy6199 Жыл бұрын
I just made this using Monkey D. Luffy's eyes and I feel fulfilled. Thanks Jeff
@notreallyhaarsh
@notreallyhaarsh 2 жыл бұрын
"Now we will use stackove- i mean trigonometry to calculate the angle" had me 😂
@wchorski
@wchorski Жыл бұрын
a video diving into 'Browser Dev Tools 101' would be most excellent
@AdityaTripathi
@AdityaTripathi 2 жыл бұрын
Thanks, will copy paste when needed :)
@ConspicuousPumpkin
@ConspicuousPumpkin Жыл бұрын
Using JavaScript and Math to help RICKROLL his eyes. Nice.
@enescagrbayraktutan6329
@enescagrbayraktutan6329 2 жыл бұрын
That was awesome!
@Bhanukamax
@Bhanukamax 2 жыл бұрын
oh man this is a good one!, I couldln't stop laughing for few moments since the "stackoverflow" thing, and turns out I'm not a real programmer lol best programming youtube channel, I love the blend of really good content + humor, keep it up!
@user-gm3eo1dp1y
@user-gm3eo1dp1y 2 жыл бұрын
Our helpline⬆️ Contact me ⬆️
100+ JavaScript Concepts you Need to Know
12:24
Fireship
Рет қаралды 2,1 МЛН
They Chose Kindness Over Abuse in Their Team #shorts
00:20
I migliori trucchetti di Fabiosa
Рет қаралды 12 МЛН
World’s strongest WOMAN vs regular GIRLS
00:56
A4
Рет қаралды 34 МЛН
ImNotGoodEnough.js
11:11
Hyperplexed
Рет қаралды 897 М.
The fastest website ever?
30:48
Theo - t3․gg
Рет қаралды 82 М.
The LIES That Make Your Tech ACTUALLY Work
11:29
Enrico Tartarotti
Рет қаралды 984 М.
How programmers flex on each other
6:20
Fireship
Рет қаралды 2,5 МЛН
Award Winning Animation With Only 20 Lines Of CSS?
6:59
Hyperplexed
Рет қаралды 1,8 МЛН
How is this Website so fast!?
13:39
Wes Bos
Рет қаралды 953 М.
ADHD Is a Curse… Until You Learn This
17:34
ADHDVision
Рет қаралды 453 М.
Why Are Open Source Alternatives So Bad?
13:06
Eric Murphy
Рет қаралды 672 М.
10 CSS Pro Tips - Code this, NOT that!
9:39
Fireship
Рет қаралды 2,2 МЛН
I Remade YouTube From Scratch Using Just Bash
17:51
icitry
Рет қаралды 74 М.