Well bro, i've spent the whole day watching multiple videos of how to create a parallanx effect while using pure css. But right now i finally understand it. Your explanation of the transformation and the coherences between the single layers helped me a lot and now I can continue coding my own effects. Dude, Thank you! :) I guess it's the best parallax video online.
@@mattiasraiani6984 bro for such concepts does i need to learn all js... i finds it hard what i should learn.. there is react node.. blah blah.. very confused😢
Thanks for your clear explanation! The concepts and processes involved are clear to me for the first time. Well done -regardless of the typos, LOL-. Kindly mention at the beginning that you are using SASS. Not all of us are yet familiar.
preserve3d :P oh! wait - let me look at the video before I comment ;) - [edit]: I was right, but you did solve the issue of scale - so cheers, and take your thumbs up
Everyone make sure you don't use a 1px perspective value like many tutorials online say! It gives messed-up results if you zoom out. Good thing this video doesn't do that though 😁
Thank you very much for sharing this video to us sir, I am so happy I found this tutorial because I am now in the stage of development of my own project in making it also as a baseline reference of my future projects. God bless
I don't really know what it is but for me the whole overlay will not show up after writing the css code. the only thing I see is the normal text. Like the css isn't linked up. Wich it is. Could anyone help me?
Thanks for the tutorial. Really made parallax a lot more understandable. But... just sayin'... SCSS is not pure CSS. Might want to change the title. Keep it coming, though. 2000 likes!
Hey Filip! I absolutely love your tutorials. But would you agree that especially the preserve3d - property seems to be a massive performance killer? Using Chrome's Frame Rate Watcher the Framerate instantly drops from 59 FPS to 30 FPS and below when activating this. Would you maybe be able to share a video on optimization techniques especially when building Pure-CSS-Parallax like these? Or would you even recommend, using a combination of Javascript and translateX / translateY for better performance, as these do not need the 3D features? It would be very cool if you could share your opinion and findings on this.
Did someone happen to achieve a good responsive result using this idea? I am ok when using large width, but really struggle with smaller size... I am not good at math btw :)
@@shokzlion332 If you are using visual studio you can use live sass compiler from the extensions. just hit the little "watch Sass" button on bottom right and boom, your sass is compiled my friend.
Arggggg! I followed the steps and for some reason I get no parallax but the layers are moving back and forth in Z direction. Still scrolls flat! I have preserve-3d on each of the layers. I'm missing one little thing. Darn it.
Think you figured it out by now, but in case you are still struggling - note that default CSS doesn't cover this and since Filipp's is using SCSS it might get confusing. So what you need to do to get it working in case you are using simple CSS, you should explicitly set properties for the specific clasess wherever Filipp's using @mixin. E.g. .intro_screen { height: 100vh; background-color: tomato; display: flex; justify-content: center; align-items: center; } hope this makes sense
man your content is good, but damn you're too slow. waaaaay too slow, I almost wanted to quit. teaching people perspective is not your problem, teaching the code functionality is. this could easily be 15 minutes.
@@developerfilip 😁 I kind of had to do that and skip some part, I already know my way around, I just wanted to learn the pure css style. But good tutorial for the beginners. Nice one
Pro Tip: Don't make dull pages like this -- they are just boring -- even if you teach the underlying concept of Parallax effect but very less people would watch it because it's not visually appealing
Thanks for that Tutorial it was pretty simple yet well informative. but you wrote CSS in the title and i saw you doing bunch of stuff that did not work at all for me like (@mixin . @include). then realized you're using scss too so i decided to go solo on bunch of stuff cause im still newbie and didnt yet go thro scss or javascript
👍🏼2000 likes for a MASTER parallax debug trick! Can we do it? 🔥
Hello Filip it's reach 2000 likes.. I really happy to see your promise awesome trick.. thank you so much indeed
Is this debugging video out ?
Well bro,
i've spent the whole day watching multiple videos of how to create a parallanx effect while using pure css. But right now i finally understand it. Your explanation of the transformation and the coherences between the single layers helped me a lot and now I can continue coding my own effects. Dude, Thank you! :) I guess it's the best parallax video online.
This really makes me happy !! I’m glad that I was able to provide a clear explanation!! Thanks for watching!!!
25:20
thnx man, recording video during mid night for us
Appreciation👏👏👏
BTW love your content and with you since you posted your first video
Haha yes you are very observant! Thanks for the support!
You can use calc() function to calculate the scale value dynamically.
Hi Awekening Bro can you explain more about this? How can we use calc() function? I'm a total noob Thanks in advance if any anyone responds ;)
@@ChrisMcCrowe simple.
calc(1 + ($translateZ * -1) / $perspective);
in pure css u have to change the variables with your values.
that's it
@@mattiasraiani6984 bro for such concepts does i need to learn all js...
i finds it hard what i should learn.. there is react node.. blah blah.. very confused😢
Amazing tutorial. Learned what i needed to know about parallax and even a bit about sass.
This was a fantastic tutorial Filip, thank you so much for making it seem so easy! :D
This is the best video on parallaxing with CSS only
I had soo much trouble finding a library that can do that and work with ssr. You've helped a ton.
Filip is genius at maths!
Thanks for your clear explanation! The concepts and processes involved are clear to me for the first time. Well done -regardless of the typos, LOL-. Kindly mention at the beginning that you are using SASS. Not all of us are yet familiar.
Love your tutorials
Thank you for this video. This was definitely the best for parallax that I could find!
exactly !! I've been through some libraries and other methods, it seems that a bit of DIY is still the best option !!
I was using fixed background before but this way is awesome
21:10 the formula can be simplified to 1-(Z translation / Perspective)
May I use it in wordpress?
Its a Good Tutorial thank you😁😁👍
Excited!!!!
how do I achieve some kind of intuition for css?
do you guys know any good free online sources to learn that?
preserve3d :P oh! wait - let me look at the video before I comment ;) - [edit]: I was right, but you did solve the issue of scale - so cheers, and take your thumbs up
Great explanation
Great tutorial. it helps me so much during a case. Thank you
Best explanation of all things thanks a lot brother..
Nice tutorial!!!! Love this videos
great tutorial, dzieki! is there a way to slow the top layer down?
Everyone make sure you don't use a 1px perspective value like many tutorials online say! It gives messed-up results if you zoom out.
Good thing this video doesn't do that though 😁
Thank you very much for sharing this video to us sir, I am so happy I found this tutorial because I am now in the stage of development of my own project in making it also as a baseline reference of my future projects. God bless
You are most welcome!! 🙌
@@developerfilip you're very sir
@developerfilip can you please share its source code because i followed the step but the css is not working as required
I don't really know what it is but for me the whole overlay will not show up after writing the css code. the only thing I see is the normal text. Like the css isn't linked up. Wich it is. Could anyone help me?
Thanks for the tutorial. Really made parallax a lot more understandable. But... just sayin'... SCSS is not pure CSS. Might want to change the title. Keep it coming, though. 2000 likes!
Very informative video on the internet 😍👌🏼
Hi guy
just discover your channel great work.
Hey Filip! I absolutely love your tutorials. But would you agree that especially the preserve3d - property seems to be a massive performance killer? Using Chrome's Frame Rate Watcher the Framerate instantly drops from 59 FPS to 30 FPS and below when activating this. Would you maybe be able to share a video on optimization techniques especially when building Pure-CSS-Parallax like these? Or would you even recommend, using a combination of Javascript and translateX / translateY for better performance, as these do not need the 3D features? It would be very cool if you could share your opinion and findings on this.
Good tuto !
I was thinking : does it work on mobile device ?
Please create a tutorial on "How to debug parallax effetcs"
Thank You!!!!
TERIMA KASIH mr. Filip
It is really good touch for websites. I’ve recently used parallax effect in one of my projects. Great tutorial thank you 🙏
no need to use external calculator. Type in the math ex. 3+1-1, select the math, ctr + shift + p, select the Emmet evaluate math. DONE!
I used Dreamweaver as a test and it does not recognise the @mixin rule or the @include rule."Unknown @ rule"
Very Nice!
Please provide the source code, thanks
Please release the especial secret effect, i really want to see it.
Did someone happen to achieve a good responsive result using this idea? I am ok when using large width, but really struggle with smaller size... I am not good at math btw :)
really awesome. hope you included a code source
2000 likes done broo, now show the secret
it would be easier if you made a div like this, .container*2 the astrick 2 means replicate it twice :)
Does anyone know why the background-attachment: fixed is not working on IOS ??
Hi great tutorial, thanks so much. I try to write the code, am I the only one having to add .base_layer=left:-6px;
Hi Filip do we need any other package or nodejs in order to run this sass code as my code doesnt display as it should be ?
Sass is just a way of writing the code with indentation. You will need a sass compiler for the machine to understand!
@@developerfilip do i install it from extensions in vscode or is that something to download separately?
@@shokzlion332 If you are using visual studio you can use live sass compiler from the extensions. just hit the little "watch Sass" button on bottom right and boom, your sass is compiled my friend.
Arggggg! I followed the steps and for some reason I get no parallax but the layers are moving back and forth in Z direction. Still scrolls flat! I have preserve-3d on each of the layers. I'm missing one little thing. Darn it.
Message me ur code on twitter, I’ll try and help ☺️
Not All Heroes Wear Capes!🔥🧠🥇
@mixin align-center property is not working. please tell how to fix it !!
Think you figured it out by now, but in case you are still struggling - note that default CSS doesn't cover this and since Filipp's is using SCSS it might get confusing. So what you need to do to get it working in case you are using simple CSS, you should explicitly set properties for the specific clasess wherever Filipp's using @mixin.
E.g. .intro_screen {
height: 100vh;
background-color: tomato;
display: flex;
justify-content: center;
align-items: center;
}
hope this makes sense
It did not work for me!! Why using sass and not css pure!
Very First, 😍
thankyou
Where is the debug Video? :)
Coming soon!!!! hehe
#Love to Learn new things
why did you put your body{otherclass} inside the body ?
Scss
@@developerfilip so in scss that is how you do it I never knew, thanks for an awesome video :)
@@AlThePal78 glad you learned something new!
@@developerfilip working on my portfolio now trying to implement parrolox a different way
Siema mordko jakiej czcionki uzywasz w vs code?
Siemka, Menlo :)
@@developerfilip u mnie jakoś inaczej wyglada :D
@@georgegeorgio70To mam w ustawieniach: "Menlo, Monaco, 'Courier New', monospace"
What exactly is sass??
Super Power to CSS
Css on steroids
Can anyone give me this code?
11:54 to 12:04 Luxembourg flag xD
Hello :D
Thank you filip
Voice crack 7:27 😅
I know this
man your content is good, but damn you're too slow. waaaaay too slow, I almost wanted to quit. teaching people perspective is not your problem, teaching the code functionality is. this could easily be 15 minutes.
Not everyone learns fast, use x2 speed next time :-)
@@developerfilip 😁 I kind of had to do that and skip some part, I already know my way around, I just wanted to learn the pure css style. But good tutorial for the beginners. Nice one
Pro Tip: Don't make dull pages like this -- they are just boring -- even if you teach the underlying concept of Parallax effect but very less people would watch it because it's not visually appealing
Thanks for that Tutorial it was pretty simple yet well informative.
but you wrote CSS in the title and i saw you doing bunch of stuff that did not work at all for me like (@mixin . @include).
then realized you're using scss too so i decided to go solo on bunch of stuff cause im still newbie and didnt yet go thro scss or javascript
Excited!!!!