When you accidentally make something awesome

  Рет қаралды 41,194

Kevin Powell

Kevin Powell

Күн бұрын

Пікірлер: 74
@yourDecisi0n
@yourDecisi0n Жыл бұрын
He discovered gamma rays in CSS
@dinoscheidt
@dinoscheidt Жыл бұрын
💀 looks great
@ilikegeorgiabutiveonlybeen6705
@ilikegeorgiabutiveonlybeen6705 11 ай бұрын
demon core when
@MozzyFX
@MozzyFX Жыл бұрын
I really like this "unplanned" content. It's useful to see your live thoughts and ideas
@Micsc
@Micsc Жыл бұрын
"when it works, don't touch it"
@pokefreak2112
@pokefreak2112 Жыл бұрын
Cool effect! One tip I can give regarding blend modes is that you can use gimp/photoshop etc. to quickly prototype the effect you're going for before jumping into CSS or shaders. Opacity is also very useful as it lets you tone down the intense blend modes like color dodge. If you wanna get technical Wikipedia also has an article on blend modes you can use to actually understand what's going on at the mathematical level :)
@jfftck
@jfftck Жыл бұрын
The jumping div was because you needed a pointer-events: none on the block. When the block is moved under the cursor, that changes the mouse position based on the blocks inner coordinates.
@LorenzoDeNato
@LorenzoDeNato Жыл бұрын
Seems a lot something that hyperplexed would use well
@carson7146
@carson7146 Жыл бұрын
New title: " How to teach yourself to code by trial and error" 💯💖 Awesome effects though! Thanks for sharing!! ❤🎉
@LePhenixGD
@LePhenixGD Жыл бұрын
Amazing stuff as always ! Btw you remind me of back when I was creating a small paint webapp and I added blur + high contrast filters to the canvas itself and it gave a trippy and cool looking effect! Experimenting really make you grow as a dev!
@NOALNOM
@NOALNOM 3 ай бұрын
Thanks for your curiosity, love your videos Kev 💪🤓
@kimberlyjacobsen4148
@kimberlyjacobsen4148 Жыл бұрын
No mistakes . Just happy little accidents ☺️ Gotta love that Bob Ross
@RayAndrewsDev
@RayAndrewsDev Жыл бұрын
That would be very nice as a reposition-on-scroll animation, sort of like a firefly than moves to direct your attention to a call-to-action or headline on a new area of content
@NickCombs
@NickCombs Жыл бұрын
The way you can do this effect on white is by switching the burn to dodge and changing the cursor shape fill to 50% gray or darker.
@erikfries
@erikfries Жыл бұрын
Love your enthusiasm!
@samirmulla8176
@samirmulla8176 Жыл бұрын
Thanks for creating this amazing videos🎉🎉🎉🎉
@Varieties_1
@Varieties_1 Жыл бұрын
Man that's a lot of beautiful craziness LOL
@tannercottle
@tannercottle 10 ай бұрын
accidentally creates a controlled Siri animation
@dylaninthemovies
@dylaninthemovies Жыл бұрын
When you get an ad for wix studio at the beginning of one of Kevin's videos...
@farhanmemon1283
@farhanmemon1283 Жыл бұрын
Looks fascinating 😍
@leechurchill1965
@leechurchill1965 Жыл бұрын
What CAN'T you do with CSS?
@RagHelen
@RagHelen Жыл бұрын
Like Max Planck inventing quantum mechanics by accident.
@vaughanprint
@vaughanprint Жыл бұрын
XFiles Kevin, admit it. You were a fan back in the day.
@darrencaai2225
@darrencaai2225 9 ай бұрын
That is so very kewl. I'm playing with CSS but not sure where to go to have community feedback. When you create/develop a new CSS technique, where do you go to have others front end developers vet your experiments?
@officialbfi01
@officialbfi01 Жыл бұрын
Something I've found playing around with this is that it overlays on top of other page elements, meaning stuff like buttons become unclickable. It seems to be related to ::before's aspect-ratio and ::after's inset, however sadly I am not sure how to fix this. z-index does not seem to work and most of the changes tried either has no effect or breaks the effect :P pointer-events set to none does allow for the user to click through the event, however the effect still overlays. A very cool effect standalone though!
@efari
@efari Жыл бұрын
you can work with a white background, but for that you need your cursor's blob to be black, and then use color-dodge instead of color-burn
@b3rgundy
@b3rgundy Жыл бұрын
The blending modes are also in nearly every Adobe product: I recommend searching for their documentation to get some details on how they work.
@ep4r4
@ep4r4 Жыл бұрын
Estos son los experimento que valen la pena publicar, sigue asi! En mi caso algo parecido me sucedió donde se requería que un componente de React convivieran en una página de Wordpress con elementos de Elementor Pro y pues lo logré experimentando.
@SamInNZ
@SamInNZ Жыл бұрын
It reminds me of the HomePod Siri animation. Particularly if you change background to white and change back to color-dodge?
@amirhasanitachi5521
@amirhasanitachi5521 Жыл бұрын
It was really nice thanks🤗🤗
@wizzbitgxs
@wizzbitgxs Жыл бұрын
Most great inventions are accedentally ;)
@virtual5754
@virtual5754 Жыл бұрын
It is beach ball. Very fuzzy, but still visible. It rolls and shows different colors from each side
@MrQuickLine
@MrQuickLine Жыл бұрын
I bet if you used oklch you could set the l for all your gradient colors to the same and as long as the background color had a lower l value it would probably be fine
@Someone-comment
@Someone-comment Жыл бұрын
@Kevin Powell I have a CSS question for a problem that I couldn't find a solution for. If you have a child div with position 'Fixed', its position will be relative to 'body' regardless of the position of the parent div. But when you apply transformation to the parent, for example "traslateX", the fixed position div will no longer have the position attached to the body, but will change to be relative to the parent (with transformation property). The reason, as you know, is that the context of the fixed layer is affected and belongs to the parent layer. Do you know a solution to keep the fixed layer position the same relative to the body, if that is even possible? I'm not looking for 'hack' solutions to simulate the reverse effect, such as if moving the transformed parent to the right and then moving the solid layer to the left, or moving the fixed child div outside the parent, or similar solutions. I need a solution, if it exists, to keep the dom unchanged and the fixed position behavior the same. Thank you
@QwDragon
@QwDragon Жыл бұрын
Maybe I can solve (i.e. hack) problem with position stycky. At least, I'll try.
@RobertMcGovernTarasis
@RobertMcGovernTarasis Жыл бұрын
That was great, and a good reminder to experiement. Must do it more than just trying to build out Frontend Mentor challenges. Wondering about using a mix of what you done and an effect I saw for making merging "glob" circles to make a sort of Lava Lamp animation in CSS.
@sharkinahat
@sharkinahat Жыл бұрын
The Slow Mo Guys just put up a video of a CD in a microwave... looks exactly the same as what Kevin did.
@nobody-w7o
@nobody-w7o 11 ай бұрын
This channel makes me feel I never learned CSS😅
@Benprod56
@Benprod56 Жыл бұрын
Hi ! I really like how you turn your tutorials like a story. I do have an issue as a frontend developer. Could you make a video about blurs animations and issue performance and how to solve this issue. I tried many solutions but not as expected at the end. Thanks a lot.
@geHuC
@geHuC Жыл бұрын
Side note, Just realized it is 'Hi there, my frontend friends' and not 'Hi there, my friend and friends' 😮
@nateonmission
@nateonmission Жыл бұрын
WAIT! Is that what he's really saying?! I heard 'Hi there, my friend and friends' too! 🤦‍♂
@diwanshuji947
@diwanshuji947 Жыл бұрын
We can put opacity to cursor and it makes nebulla like structure
@igordasunddas3377
@igordasunddas3377 Жыл бұрын
Man, the cards in a proper application in a more subtitle way would look cool. Also the gradient is nice, too, though animation-timeline is from what I remember from one of your other videos only available in the very recent version of Chrome?
@minhdung3532
@minhdung3532 Жыл бұрын
Hi mr Kevin, your video very good. But Telegram latest update have special delete animation so smooth, can you made like that? Hope you reply
@domsau2
@domsau2 Жыл бұрын
Hello. Nice UFO image! ;-) Thanks.
@ArtyomStouch
@ArtyomStouch Жыл бұрын
Thanks Keviv, it`s good tricks.
@gevor3338
@gevor3338 Жыл бұрын
Hey Kevin, is there any way I can get the code for the card? I really liked it
@ralphstube
@ralphstube Жыл бұрын
As far as I can see, getElementById is 3-5 times faster than querySelector - so I'm using IDs for JS and leaving classes and attributes for styling.
@EdwinMartin
@EdwinMartin Жыл бұрын
Nobody will notice it’s 1ms faster 😉
@methic-w1l
@methic-w1l Жыл бұрын
The Newton of CSS.
@denizorsel1029
@denizorsel1029 Жыл бұрын
It is beautiful.
@Android480
@Android480 Жыл бұрын
You could solve the first problem with JS, though it wouldn’t be fun
@anubislockward3750
@anubislockward3750 Жыл бұрын
It's not a bug...it's a feature
@TheMightyAtomNL
@TheMightyAtomNL Жыл бұрын
What's this editor called? It's not Visual Studio Code is it?
@JosephCodette
@JosephCodette Жыл бұрын
It’s codepen , online editor
@RobertMcGovernTarasis
@RobertMcGovernTarasis Жыл бұрын
@@JosephCodette indeed, discovered today there is an alternative to it called Web Maker App (I wanted an offline codepen)
@SwayamBrahmbhatt
@SwayamBrahmbhatt Жыл бұрын
help me I'm being held hostage
@wolfphantom
@wolfphantom Жыл бұрын
"Color Burn" and "Color Dodge" are things you used in other applications like Photoshop. This is a pretty technical explanation of how it works. kzbin.info/www/bejne/jZWllmt7p6etj9U
@andreroodt4647
@andreroodt4647 Жыл бұрын
Yeah right, you "accidentally" made this. Did anyone else notice the chemtrails in the background? 😉😜
@sercan272727
@sercan272727 Жыл бұрын
This looks like siri icon
@frosty8104
@frosty8104 Жыл бұрын
Colour changing sphere :)
@ThomasMYoutube
@ThomasMYoutube Жыл бұрын
This is awesome! I'm an aspiring junior developer from the UK: what technologies would you reccomend learning for front end development in 2024?
@lasarkolja9692
@lasarkolja9692 Жыл бұрын
HTML, CSS & JavaScript 😃
@natescode
@natescode Жыл бұрын
HTML, CSS and JS obviously. But look at your local market! People Always ask this and ignore what companies are hiring for
@KevinPowell
@KevinPowell Жыл бұрын
@natescode nailed it, look at local job postings and see what's in demand, it can be drastically different from one place to another :)
@rayyanabdulwajid7681
@rayyanabdulwajid7681 Жыл бұрын
Html, css, javascript are mandatory. Then , you have to go ahead with javascript framework (pick any one framework). I suggest you to go ahead with react js. But make sure to build a lot of small projects with html, css and javascript before you move on to a javascript framework like react js
@henolivares
@henolivares Жыл бұрын
Hey i was checking out your courses and see CSS Demystified and beyond css so I'm not sure what would best or the difference between them
@YoutubeHacksUnleashed
@YoutubeHacksUnleashed 10 ай бұрын
you to g man
@eugenenepomnyaschy
@eugenenepomnyaschy Жыл бұрын
It’s Siri effect
@RodrigoNishino
@RodrigoNishino Жыл бұрын
Neat
@shanappy7041
@shanappy7041 Жыл бұрын
Second
Create a cool bubble zoom effect with CSS
19:04
Kevin Powell
Рет қаралды 34 М.
A new way to generate worlds (stitched WFC)
10:51
Watt
Рет қаралды 557 М.
$1 vs $500,000 Plane Ticket!
12:20
MrBeast
Рет қаралды 122 МЛН
Какой я клей? | CLEX #shorts
0:59
CLEX
Рет қаралды 1,9 МЛН
-5+3은 뭔가요? 📚 #shorts
0:19
5 분 Tricks
Рет қаралды 13 МЛН
Most people have no idea you can style underlines like this
10:03
Kevin Powell
Рет қаралды 41 М.
Why Are Open Source Alternatives So Bad?
13:06
Eric Murphy
Рет қаралды 740 М.
I tried coding my own graphics engine
4:23
Garbaj
Рет қаралды 221 М.
The background values no one knows about
15:28
Kevin Powell
Рет қаралды 43 М.
Unfamiliar CSS patterns that improve on the classics
22:57
Kevin Powell
Рет қаралды 48 М.
Coding Challenge 180: Falling Sand
23:00
The Coding Train
Рет қаралды 1,1 МЛН
Tmux has forever changed the way I write code.
13:30
Dreams of Code
Рет қаралды 1,1 МЛН
Using CSS custom properties like this is a waste
16:12
Kevin Powell
Рет қаралды 187 М.
What is the Smallest Possible .EXE?
17:04
Inkbox
Рет қаралды 598 М.
Has Generative AI Already Peaked? - Computerphile
12:48
Computerphile
Рет қаралды 1,1 МЛН
$1 vs $500,000 Plane Ticket!
12:20
MrBeast
Рет қаралды 122 МЛН