No video

SVG Analogue World Clock with HTML, CSS, and JavaScript

  Рет қаралды 6,919

Coding in Public

Coding in Public

Күн бұрын

Пікірлер: 30
@LePhenixGD
@LePhenixGD 2 ай бұрын
Your explanation about the stroke-dasharray and stroke-dashoffset are amazing! Also wasn't aware about the property "pathlength" for circles to easily divide into chunks the stroke, previously I'd use random in the strokes, but now with your method it's much easier, you made me learn something valuable today!
@CodinginPublic
@CodinginPublic Ай бұрын
So glad you enjoyed it! Thanks for taking the time to say something!
@hellothere8547
@hellothere8547 2 жыл бұрын
It’s very informative seeing both the object oriented approach and functional while comparing them. Thanks for doing that step and for a great video.
@CodinginPublic
@CodinginPublic 2 жыл бұрын
Hey! Awesome. Glad you enjoyed it. Yeah, I think comparing them is super helpful. And there’s definitely room to advance past what I did here. Both types have their place for sure.
@nitinsoni9956
@nitinsoni9956 2 жыл бұрын
Watched just two videos of you but learnt something new from both of the videos. I really like the OOPs and functional approach. Simple clean design with great explanation of the code. Looking forward to many such great tutorials from you.
@CodinginPublic
@CodinginPublic 2 жыл бұрын
Thanks for the kind words. Glad you’ve been enjoying the channel projects!
@adityakadam2256
@adityakadam2256 2 жыл бұрын
Fantastic video. Thanks a lot for sharing it. Very detailed and well explained.
@CodinginPublic
@CodinginPublic 2 жыл бұрын
Sure thing. Glad you enjoyed it!
@caroll9726
@caroll9726 Жыл бұрын
Nice project man! I really enjoyed watching! :) :) :)
@CodinginPublic
@CodinginPublic Жыл бұрын
Glad you enjoyed it!
@federicoraulmaciasaparicio1339
@federicoraulmaciasaparicio1339 2 жыл бұрын
Great video!! Thanks for showing us how to work with the svg tag
@CodinginPublic
@CodinginPublic 2 жыл бұрын
So glad you enjoyed it! It was a lot of fun to put together! Cheers!
@JonKurz
@JonKurz 7 ай бұрын
I'm still attempting to implement this solution, and coding step by step to get the full benefit of the exercise. I appreciate the detail and clarity of your presentation. I am still working through some Parcel issues with the date functions, but I hope I can resolve it. I do have a question unrelated to the actual solution though. In VSCode, how did you replace the % with the highlighted current dir? I searched the settings and online but couldn't find how to do this. Again, thank you for a great project demonstration!
@idunius
@idunius Жыл бұрын
I learn so much from your Videos! Super cool to follow along! I just used the Part 1 and changed it up a bit to have also multiple Clocks on the same page. Now it seems like the Browser can’t handle this. [Violation] 'requestAnimationFrame' handler took 54ms. I don’t really see how to optimize the code to make it run smoothly. Do I was wondering if it is possible to use your second solution without a module bundler? Is it possible to include "date-fns-tz" just with a script tag?
@CodinginPublic
@CodinginPublic Жыл бұрын
Thanks for the comment. Sorry for my delay. So glad you enjoyed the video! As to not using a bundler, you should be able to add type="module" to an on-page script tag and import date-fns-tz from an absolute URL (like something on their cdn) and then use it, I think? Let me know if that helps!
@NEZIRI2718
@NEZIRI2718 2 жыл бұрын
Great Video! Hey, I need some advise so I like the idea of Coding but the numbers confuse me how do you know that this length will look like that? i guess i need to relearn basic math before i can code. Also the positioning of code is what I don't understand like if you wanna move text down how do you really do that just the layout of code in HTML,CSS Confuses me I'm a beginner so I just need to speak to someone who knows code.
@CodinginPublic
@CodinginPublic 2 жыл бұрын
Hey, thanks! Well, this is definitely a more intermediate tutorial, so no pressure if you're new to web dev and find this a little more difficult. I'd encourage you to start working through freecodecamp’s lessons on their site. That's a great place to start! For CSS, it’s hard to be @Kevin Powell (kzbin.info) and for HTML, I think David Gray is a great teacher (kzbin.info/www/bejne/hmGoeIyKl5aWeNU)!
@projectdreams26
@projectdreams26 Жыл бұрын
I have a problem when importing at 44:29. The way you have said grab. How do you go about it?...cause mine is saying zondedtimeutc is declared but its value is not read.
@CodinginPublic
@CodinginPublic Жыл бұрын
I think 46:22 answers your question unless I'm missing something. When you first import it, you’ll get an error because you haven't used it, but we use it around that timestamp. Does that help?
@chiefsimz
@chiefsimz Жыл бұрын
Is there an example of a digital version of this project?
@CodinginPublic
@CodinginPublic Жыл бұрын
I haven't done one yet :)
@gayatrigadekar2002
@gayatrigadekar2002 2 жыл бұрын
Is it code run on notepad or which platform
@CodinginPublic
@CodinginPublic 2 жыл бұрын
Not sure I understand? Do you mean which program am I using in the tutorial? I'm using VS Code if that's your question. Thanks!
@gayatrigadekar2002
@gayatrigadekar2002 2 жыл бұрын
Sir is there any research pages for this project as a engineering students project
@madzeddies1066
@madzeddies1066 Жыл бұрын
Hi I have been following your lesson, and just wanted to ask you question which may sound stupid (I am still very new at coding). I am at 10:06 / 48:40 and I can't get *, *::after, *::before { } . To work in editor, I checked in view problem section and this is all that will come up (down below). I tried to google up the element but was unsure what I was googling '::after and ::before' doesn't get you far. View Problem *, Selector Specificity: (0, 0, 0) Do not use empty rulesetscss(emptyRules) ::after Selector Specificity: (0, 0, 1) Do not use empty rulesetscss(emptyRules) ::before Selector Specificity: (0, 0, 1) Class ***::before** Do not use empty rulesetscss(emptyRules)
@CodinginPublic
@CodinginPublic Жыл бұрын
Hey, Madz! Thanks for the comment. Sorry for my delay. Great question! The trouble is you didn't put any rules between the curly brackets. So just put something like … box-sizing: border-box; …in between the brackets and the error should go away. Hope that helps!
How to Animate SVG Strokes
14:11
Coding in Public
Рет қаралды 12 М.
Before/After Image Slider Comparison (HTML, CSS, and JavaScript)
16:45
Coding in Public
Рет қаралды 21 М.
UNO!
00:18
БРУНО
Рет қаралды 2,3 МЛН
MISS CIRCLE STUDENTS BULLY ME!
00:12
Andreas Eskander
Рет қаралды 20 МЛН
A little girl was shy at her first ballet lesson #shorts
00:35
Fabiosa Animated
Рет қаралды 16 МЛН
SVG Tutorial: With CSS Animation
43:34
LearnWebCode
Рет қаралды 283 М.
Simple Code, High Performance
2:50:14
Molly Rocket
Рет қаралды 241 М.
Can I Create This Complex Animated Multistep Form?
39:42
Web Dev Simplified
Рет қаралды 297 М.
The moment we stopped understanding AI [AlexNet]
17:38
Welch Labs
Рет қаралды 844 М.
Solving distributed systems challenges in Rust
3:15:52
Jon Gjengset
Рет қаралды 221 М.
Self-Driving Car with JavaScript Course - Neural Networks and Machine Learning
2:32:40
Learn Web Design For Beginners - Full Course (2024)
3:07:31
Flux Academy
Рет қаралды 1,6 МЛН
Complex SVG Animations Made Simple with JavaScript
22:04
DesignCourse
Рет қаралды 62 М.
UNO!
00:18
БРУНО
Рет қаралды 2,3 МЛН