Build A Clock With JavaScript

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 พ.ค. 2019
  • One of the best projects for learning CSS and JavaScript is an analog clock. Creating an analog clock teaches you how to use absolute position and transform in many different ways. It also forces you to learn how to modify your CSS with JavaScript. Lastly, it is a beginner friendly project which makes it perfect for anyone.
    In this video we will be covering CSS position, and transform extensively. We will also use CSS variables to make the JavaScript integration much easier. By the end of this quick video you will have a fully functional clock and more importantly increased your CSS and JavaScript skills significantly.
    📚 Materials/References:
    CSS Position Tutorial: • Learn CSS Position In ...
    GitHub Code: github.com/WebDevSimplified/J...
    Code Pen Code: codepen.io/WebDevSimplified/p...
    🧠 Concepts Covered:
    - How to use CSS variables in JavaScript
    - JavaScript date object
    - How to use CSS transform to center elements
    - How to use CSS transform to rotate elements on an axis
    - Using data attributes as selectors in JavaScript
    - Basic CSS pseudo element usage
    🌎 Find Me Here:
    Twitter: / devsimplified
    GitHub: github.com/WebDevSimplified
    CodePen: codepen.io/WebDevSimplified
    #Clock #JavaScript #CSS

ความคิดเห็น • 565

  • @WebDevSimplified
    @WebDevSimplified  5 ปีที่แล้ว +117

    Free tickets to my first concert for anyone that can guess the song I butchered in the intro. 🎫

    • @BabyDespair
      @BabyDespair 5 ปีที่แล้ว +14

      Black Sabbath - Iron Man. Just the song alone would have been enough for the like and sub, but the class too was very good and greatly helpful. Great Job!

    • @WebDevSimplified
      @WebDevSimplified  5 ปีที่แล้ว +26

      @@BabyDespair The song is such a classic. Looks like you will be getting VIP tickets to my first concert. If you are lucky I'll play Smoke On The Water and Wonderwall.

    • @bryantgrimminger5481
      @bryantgrimminger5481 5 ปีที่แล้ว +3

      th-cam.com/video/D2BPZR-UaYI/w-d-xo.html

    • @alecthomasquinn4438
      @alecthomasquinn4438 5 ปีที่แล้ว +5

      Darude - Sandstorm

    • @145hemu
      @145hemu 4 ปีที่แล้ว +3

      Man You are the BEST.I like your videos.its more easy to understand JS through your Videos.thanks for sharing your knowledge through these videos bro. Love you bro 👍

  • @kienboy9999
    @kienboy9999 ปีที่แล้ว +14

    man the placement of numbers around the clock is just magic

  • @filon861
    @filon861 4 ปีที่แล้ว +80

    My top favorite web dev channels
    1. Web Dev Simplified
    2. Dev Ed
    3. Kevin Powell
    4. Darkcode

    • @senthur9308
      @senthur9308 4 ปีที่แล้ว

      me ttooo

    • @covidnineteen5249
      @covidnineteen5249 4 ปีที่แล้ว +13

      Traversymedia?

    • @AbidAlWassie
      @AbidAlWassie 3 ปีที่แล้ว +3

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      .number {
      position: absolute;
      width: 100%;
      height: 100%;
      /*top: 0;*/
      /*left: 0;*/
      text-align: center;
      font-size: 1.4rem;
      font-weight: 700;
      --rotation: 0;
      transform: rotate(var(--rotation));
      }
      .reverse {
      --reverse: 0;
      transform: rotate(var(--reverse));
      }
      .number1 { --rotation: 30deg}
      .number2 { --rotation: 60deg}
      .number3 { --rotation: 90deg}
      .number4 { --rotation: 120deg}
      .number5 { --rotation: 150deg}
      .number6 { --rotation: 180deg}
      .number7 { --rotation: 210deg}
      .number8 { --rotation: 240deg}
      .number9 { --rotation: 270deg}
      .number10 {--rotation: 300deg}
      .number11 {--rotation: 330deg}
      /*.number12 {--rotation: 30deg}*/
      .number1 div{ --reverse: -30deg}
      .number2 div{ --reverse: -60deg}
      .number3 div{ --reverse: -90deg}
      .number4 div{ --reverse: -120deg}
      .number5 div{ --reverse: -150deg}
      .number6 div{ --reverse: -180deg}
      .number7 div{ --reverse: -210deg}
      .number8 div{ --reverse: -240deg}
      .number9 div{ --reverse: -270deg}
      .number10 div{--reverse: -300deg}
      .number11 div{--reverse: -330deg}

    • @mareboinaravi5272
      @mareboinaravi5272 3 ปีที่แล้ว +1

      @@AbidAlWassie wow thanks man.

    • @anupkhismatrao9280
      @anupkhismatrao9280 ปีที่แล้ว

  • @LuckystrikeGFXer
    @LuckystrikeGFXer 5 ปีที่แล้ว +114

    Best acting and editing skills I have seen so far!

    • @WebDevSimplified
      @WebDevSimplified  5 ปีที่แล้ว +14

      Thank you! *takes dramatic bow*

    • @AbidAlWassie
      @AbidAlWassie 3 ปีที่แล้ว +11

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      .number {
      position: absolute;
      width: 100%;
      height: 100%;
      /*top: 0;*/
      /*left: 0;*/
      text-align: center;
      font-size: 1.4rem;
      font-weight: 700;
      --rotation: 0;
      transform: rotate(var(--rotation));
      }
      .reverse {
      --reverse: 0;
      transform: rotate(var(--reverse));
      }
      .number1 { --rotation: 30deg}
      .number2 { --rotation: 60deg}
      .number3 { --rotation: 90deg}
      .number4 { --rotation: 120deg}
      .number5 { --rotation: 150deg}
      .number6 { --rotation: 180deg}
      .number7 { --rotation: 210deg}
      .number8 { --rotation: 240deg}
      .number9 { --rotation: 270deg}
      .number10 {--rotation: 300deg}
      .number11 {--rotation: 330deg}
      /*.number12 {--rotation: 30deg}*/
      .number1 div{ --reverse: -30deg}
      .number2 div{ --reverse: -60deg}
      .number3 div{ --reverse: -90deg}
      .number4 div{ --reverse: -120deg}
      .number5 div{ --reverse: -150deg}
      .number6 div{ --reverse: -180deg}
      .number7 div{ --reverse: -210deg}
      .number8 div{ --reverse: -240deg}
      .number9 div{ --reverse: -270deg}
      .number10 div{--reverse: -300deg}
      .number11 div{--reverse: -330deg}

    • @janbetz1542
      @janbetz1542 3 ปีที่แล้ว

      yes. more often since then cyber native toddlers fiddle with systems online

  • @jacsonmiranda
    @jacsonmiranda 2 ปีที่แล้ว +1

    you made so simple, no blablabla, just code and going to the point, great job

  • @mandihaase2744
    @mandihaase2744 3 ปีที่แล้ว +15

    Awesome simple, straight-forward tutorial. Did this with my daughter and she loved it!

  • @darrenhoyne7459
    @darrenhoyne7459 3 ปีที่แล้ว +5

    Great video bud, clear and to the point, very easy to follow along, good job and keep it up

  • @zamankhan1255
    @zamankhan1255 5 ปีที่แล้ว +12

    Best programming channel I found so far for begginers,
    nice videos with best projects,
    keep it up!

  • @gxc2000
    @gxc2000 4 ปีที่แล้ว +29

    A really nice, enjoyable project. I was expecting it to contain some complex drawing in the JavaScript file. It was very surprising to see that almost all of the work is actually done in the CSS file! Many thanks and really well presented.

    • @WebDevSimplified
      @WebDevSimplified  4 ปีที่แล้ว +11

      Thank you. I like using CSS when I can for designs since it is so fun to work with.

  • @iamreg1965
    @iamreg1965 4 ปีที่แล้ว +2

    Great video on the way that HTML, CSS and JS work so beautifully together.

  • @alexgomez9033
    @alexgomez9033 5 ปีที่แล้ว +5

    Man you definitely are underrated! i am thankful to Dev Ed for introducing me to you. I enjoy all your videos. KEEP UP THE GOOD WORK!!!

    • @WebDevSimplified
      @WebDevSimplified  5 ปีที่แล้ว +3

      Thanks! I love Dev Ed as well. He has such a great personality.

  • @matthewguillen2823
    @matthewguillen2823 2 ปีที่แล้ว +2

    Brother you are the best teacher I’ve ever seen a coding. you teach better than my professors

  • @mareboinaravi5272
    @mareboinaravi5272 3 ปีที่แล้ว +1

    I thought it was too difficult JavaScript but this man shows me Nothing is too Hard. Thanks, man...

  • @jamezjaz
    @jamezjaz 3 ปีที่แล้ว +2

    Completely amazing. Thank you for this tutorial

  • @mykhailomikhnovych8303
    @mykhailomikhnovych8303 4 ปีที่แล้ว +2

    Your awkward acting at the beginning deserves the Oscar my man.
    Keep it going, you're doing a great job!

  • @Risehack
    @Risehack 4 ปีที่แล้ว +1

    Cool, man! I am new to this topic, and the Internet search did not give much results. But I came across your channel and you helped me. A huge thank you from Russia.

  • @webdevparadise4452
    @webdevparadise4452 4 ปีที่แล้ว +2

    Nice intro with guitar WebBoi and thanks for this amazing tutorial. Finally I have my OWN watch. Time to learn JS!

  • @abhilekhgautam5963
    @abhilekhgautam5963 4 ปีที่แล้ว +1

    You are always exactly to the point.That is what i love about you.

  • @khanabanana1217
    @khanabanana1217 3 ปีที่แล้ว +1

    You nailed it man. It is a big project for me to get started in this javascript.

  • @sergten
    @sergten 3 ปีที่แล้ว +4

    Geez Christ, this channel is golden!

  • @anujshany8659
    @anujshany8659 3 ปีที่แล้ว +3

    Just Loved this it didn't even feel like 17 minutes ❤️

  • @ahmmadawshaf
    @ahmmadawshaf 3 ปีที่แล้ว +1

    Absolutely brilliant tutorial for beginners in JS

  • @ukmfpaha
    @ukmfpaha 3 ปีที่แล้ว +1

    This is so cool. I've only ever seen this being done using HTML Canvas but this is way better 👍🔥

  • @marcdonvito6485
    @marcdonvito6485 4 ปีที่แล้ว +1

    Very good project to learn how HTML, CSS, and JavaScript work together.

  • @iliashterev38
    @iliashterev38 3 ปีที่แล้ว +1

    Greeting from Bulgaria. Thank you again for the (one more) nice tutorial.

  • @uzair004
    @uzair004 4 ปีที่แล้ว +1

    was searching for a way to add curve text or numbers inside clock , found out there is no easy way except jquery or another library, BUT then i found Web Dev Simplified, yeah Simplified

  • @Suneriins234
    @Suneriins234 4 ปีที่แล้ว +8

    Only This due to 'defer'in script src,I troubled for hour. Finally got it.Thanks!

    • @vingram100
      @vingram100 2 ปีที่แล้ว

      Good gosh, thank you so much! I'm going to read about defer now, I was so confused!

  • @Mr.slikko
    @Mr.slikko 4 ปีที่แล้ว +3

    I absolutely love the sketch at the beginning, perfect 👌😹😹😹

  • @raresmihalache3189
    @raresmihalache3189 4 ปีที่แล้ว +1

    Thank you for the tutorial. Very helpful

  • @aamirmasood010
    @aamirmasood010 ปีที่แล้ว

    amazing!it's lot better than using clock svg image as background.You really made it simplified with that number transform degree property man.....loved it

  • @usama57926
    @usama57926 4 ปีที่แล้ว +2

    this channel is amazing.......... sir you deserve a millions subs and likes

  • @TheWorldlife83
    @TheWorldlife83 2 ปีที่แล้ว +12

    Thanks for this, all your videos are very useful, short and precise. 🙂
    we can add this JavaScript to rotate numbers without writing 12 different css -
    let allNum = document.querySelectorAll('.number');
    for(let num of allNum){
    num.style.transform = `rotate(${30*num.innerText}deg)`;
    }

    • @harunjonuzi
      @harunjonuzi 9 หลายเดือนก่อน

      it doesnt seem to work though? we need to transform the innerText to number, because 30 * "1", it uses strings to multiply...

  • @saaddogar8563
    @saaddogar8563 2 ปีที่แล้ว +1

    i love how serious he is in his intro even when joking

  • @raphaelmachado7197
    @raphaelmachado7197 2 ปีที่แล้ว +1

    Your code is so simple and easy for beginners to read

  • @Gormlessostrich
    @Gormlessostrich 3 ปีที่แล้ว +1

    Thanks for another fun tutorial!

  • @usama57926
    @usama57926 4 ปีที่แล้ว +3

    i learned a lot of thing from this lecture

  • @AbdulJalil-bu6ou
    @AbdulJalil-bu6ou 3 ปีที่แล้ว +1

    Thank you very much for the tutorial.

  • @randyrandall6622
    @randyrandall6622 4 ปีที่แล้ว +59

    For complete beginners, I recommend putting video to half speed.
    Question: How did you learn what all of these individual instructions mean?
    It seems like it is easy just to copy cat this project but learning the logic is something different and so important.
    Did you learn how to create this clock after learning W3 Schools? What gave you the logic? Thank you!

    • @marcusaureliusregulus2833
      @marcusaureliusregulus2833 3 ปีที่แล้ว +1

      How to make the tip of the hands pointy like an arrow?

    • @salehabdullah1154
      @salehabdullah1154 3 ปีที่แล้ว +5

      @@marcusaureliusregulus2833 By using CSS
      For example,
      .clock .hand{
      border-top-right-radius: 20px(You can use any other value);
      border-top-left-radius: 20px;
      }

    • @marcusaureliusregulus2833
      @marcusaureliusregulus2833 3 ปีที่แล้ว

      @@salehabdullah1154 thnx mate

    • @shrn
      @shrn 3 ปีที่แล้ว +3

      @@marcusaureliusregulus2833 I remember the joke from the dictator movie after reading this. I want my Nuke heads pointy😂

    • @MrKnaldperlen
      @MrKnaldperlen 2 ปีที่แล้ว +1

      I would like to add to this:
      Program it while you watch the video. Play around with the code, try and set left to 75% and not 50%. What does it do? Play around, to see how the logic works.

  • @JoonPark1
    @JoonPark1 3 ปีที่แล้ว +1

    Wow this is an awesome explanation!

  • @zawadahmed5484
    @zawadahmed5484 3 ปีที่แล้ว +2

    honestly speaking, among all the javascript devs, Kyle is the most talented. That's my opinion

  • @kengthe5949
    @kengthe5949 4 ปีที่แล้ว +1

    very nice explanation!! thank you!!

  • @andrei9115
    @andrei9115 2 ปีที่แล้ว +2

    So basically, in your javascript program you call the current Date every time and then you just display that date accordingly. I think, a more practical way would be if you get the currentDate() once and then from second to second increment all the hands accordingly and then check the currentTime from the Internet and your clock and see if they are the same...I mean, your way is much simpler than trying to calculate how many degrees does the minute and hour move in 1 second and increment it every second :) Keep up the good work!

  • @elieli2570
    @elieli2570 2 ปีที่แล้ว +1

    Awesome project, keep it up!!!

  • @arjunghimire6709
    @arjunghimire6709 5 ปีที่แล้ว +1

    You are amazing Bro. Your coding skill is highly impressive and easily understand.

  • @balalnaeem
    @balalnaeem 4 ปีที่แล้ว +11

    `div.number.number${$}*12` would do the job. Double multiplication of 12 is redundant.

  • @nicholaidrake1144
    @nicholaidrake1144 4 ปีที่แล้ว +1

    Loved this video! I followed along and edited my way some. I was having trouble adding a header centered above the clock. It keeps adding the heading to the left of the clock. any suggestions??

  • @balporsugu7198
    @balporsugu7198 4 ปีที่แล้ว +3

    Is there any solid reason to use dataset ids for selecting hand elements? I preferred selecting by class names.

  • @deminouk8347
    @deminouk8347 5 ปีที่แล้ว

    Awesome! Seems like dificult stuff is explained very simple!! YouGo!! 🌸🌸🌸 /eva from Sweden

  • @user-fe3wv2bz8o
    @user-fe3wv2bz8o 3 ปีที่แล้ว +1

    You are great ! Thank you so much bro !

  • @pepefubias7654
    @pepefubias7654 3 ปีที่แล้ว +1

    good job and very well explained thank you

  • @ahmedbadra9237
    @ahmedbadra9237 3 ปีที่แล้ว +1

    you provide really great value

  • @computersciencewithpeter
    @computersciencewithpeter ปีที่แล้ว +1

    Thanks so much for your tutorials 💕😘

  • @vvvaaal
    @vvvaaal 3 ปีที่แล้ว +1

    And I thought i had great css knowledge until I started watching your videos. :D

  • @manishsharma-gf6fw
    @manishsharma-gf6fw 5 ปีที่แล้ว

    you rock man... just subscribed your channel, waiting for more videos like this

  • @ganjeblerencehanma6577
    @ganjeblerencehanma6577 2 ปีที่แล้ว +1

    thanks for the project. it really helped

  • @martinguzlej6269
    @martinguzlej6269 4 ปีที่แล้ว

    Loved the Intro ! :D

  • @mizuesato4775
    @mizuesato4775 5 ปีที่แล้ว +2

    It’s awesome 👏 I like it‼️ I want to watch your video that is tutorial with html css and JavaScript more and more 😁

    • @WebDevSimplified
      @WebDevSimplified  5 ปีที่แล้ว +1

      Thanks! I'm really glad you enjoyed it.

  • @beethoven5984
    @beethoven5984 2 ปีที่แล้ว

    Follow from Spane! Your a good youtuber!

  • @matejmin
    @matejmin 5 ปีที่แล้ว +2

    Great job, it's easy to follow along. nice flow..

  • @deepakbhargav7434
    @deepakbhargav7434 3 ปีที่แล้ว

    Thanks for sharing your knowledge

  • @muizolaore4630
    @muizolaore4630 2 ปีที่แล้ว

    Great Content
    Definitely subscribing!!

  • @medilies
    @medilies 3 ปีที่แล้ว +7

    "Absolute children indise an relative container" changed my life
    I used to make a JS scirpt that follows the container position to update children positions

  • @oguzozdemir8886
    @oguzozdemir8886 ปีที่แล้ว +1

    Awesome and sipmle project. Thank you...

  • @256paveliko
    @256paveliko 5 ปีที่แล้ว +2

    I'm a beginner programmer and your explanations are excellent

  • @markfernando8438
    @markfernando8438 4 ปีที่แล้ว +2

    Hi, How do I sync the clock with a different time in a different country?

  • @savannahlin8063
    @savannahlin8063 5 ปีที่แล้ว +2

    Satisfied! always share your videos with friends to help people live easier.

    • @WebDevSimplified
      @WebDevSimplified  5 ปีที่แล้ว

      Thank you! Hopefully your friends enjoy the video.

  • @levezinet
    @levezinet ปีที่แล้ว +4

    Thank you so much for an incredibly great video. I have been struggling to make clocks and gauges and this provides a superb implementation of the design patterns I need. Bravo. But my clock would not move, and debugging showed null values for the hands. Toward the end of the comments here a large number of people appear to have the same issue. It seems to me that the call to document.querySelector is using search by attribute (['date-hour-hand'] etc) but these attributes do not exist in the sample HTML given for the hands. I simply added an id to the hand divs and used document.getElementById instead and all works perfectly. I thought others may like to know. It would seem that this is an inconsistency in the code in the video, and I suppose videos are hard to go back and edit corrections in.
    I'll be adapting this to make clocks and compasses for use in Node-RED. I owe you much gratitude. All the best from Down Under in Australia!

  • @WiLDeveD
    @WiLDeveD 2 ปีที่แล้ว +1

    Fine & Useful Content. Thanks...

  • @JoeWong81
    @JoeWong81 5 ปีที่แล้ว

    Dude you're amazing!

  • @priyasharma-rd9kl
    @priyasharma-rd9kl 2 ปีที่แล้ว +1

    Nice project sir👍and the way you explain is very good.thanku

  • @janezklun
    @janezklun 5 ปีที่แล้ว

    Thank you for very useful video, cheers

  • @marcwinner567
    @marcwinner567 5 ปีที่แล้ว

    Good stuff as usual!

  • @zdargahi
    @zdargahi 2 ปีที่แล้ว +2

    is there a way to avoid repeating. css for number 1 to 12. define variable or set style in JS?

  • @barackobam6248
    @barackobam6248 ปีที่แล้ว +1

    I really love your work and all what you do . I had a similar exercise and did exactly like you but at the level of the JavaScript the code didn't work don't know why

  • @k.m.abusyeduzzal6272
    @k.m.abusyeduzzal6272 ปีที่แล้ว

    Excellent , I learned a lot

  • @andyjohn907
    @andyjohn907 3 ปีที่แล้ว

    thanks for the nice tutorial sir...

  • @saltech2024
    @saltech2024 2 ปีที่แล้ว +1

    Well done....
    How can I possibly edit and set the time of my choice? Something like a prompt when the page loads "please edit the time of your choice or load the default time".

  • @nic00la1
    @nic00la1 ปีที่แล้ว +1

    very cool!! 🤠 i did it today and im proud of myself 💘💫

  • @lapto4676
    @lapto4676 ปีที่แล้ว +7

    I figured out how to rotate the numbers to their upright position on my own and it felt so good! I don't know if it was intentional but it's a great method, leaving things out for the learner to add.

    • @vishmapdas7898
      @vishmapdas7898 ปีที่แล้ว

      Keep learning! That's the joy!

    • @pixelum2023
      @pixelum2023 ปีที่แล้ว

      Interesting! I had not noticed that basically all clocks have their numbers upright. One more challenge.

    • @noidea5372
      @noidea5372 ปีที่แล้ว +1

      how did you do that? can you share your code?

    • @Sara-rs4oq
      @Sara-rs4oq ปีที่แล้ว +1

      @@noidea5372
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12

    • @lapto4676
      @lapto4676 ปีที่แล้ว

      @WebTricks this is what i did

  • @Taishhhh
    @Taishhhh 3 ปีที่แล้ว +1

    just wanna ask, whats more appropriate to use in .js? var or const?

  • @kamal-purohit
    @kamal-purohit 4 ปีที่แล้ว +2

    Great video... Not at all complecated..
    Can use
    Transtion : 1s ; under hand class
    For better animation

  • @ericholdridge4102
    @ericholdridge4102 4 ปีที่แล้ว +1

    Anyone know how to use scss variables with js? Having trouble implementing my scss variable when we .setProperty

  • @pccloser
    @pccloser ปีที่แล้ว

    Perfect ! , Thanks a lot.

  • @handsomecat7225
    @handsomecat7225 2 ปีที่แล้ว +1

    Excellent!

  • @MinhPham-eh6lr
    @MinhPham-eh6lr 3 ปีที่แล้ว

    great tutorial!

  • @ikramikky2838
    @ikramikky2838 5 ปีที่แล้ว +4

    this is amazing 🔥

  • @pacho7341
    @pacho7341 2 ปีที่แล้ว

    thanks about the tutorial!!

  • @alecthomasquinn4438
    @alecthomasquinn4438 5 ปีที่แล้ว

    Finally finished this project after like a week of on-and-off effort. Tips/a vid on sustaining effort perhaps? I can only concentrate on this stuff for like 2-4 hours before my mind refuses to absorb anything more.

    • @WebDevSimplified
      @WebDevSimplified  5 ปีที่แล้ว

      That is a good idea. 4 hours of focused concentration pretty good if you ask me. My best advice would be to take a break when you start to lose focus and come back after 30 minutes or so. That will freshen your mind up.

  • @zuber3228
    @zuber3228 2 ปีที่แล้ว

    maan gya bhai , fan of you

  • @deorabbinjibeasuncion5907
    @deorabbinjibeasuncion5907 4 ปีที่แล้ว

    hi, how can i add a functionality to handle a negative number input... 4 * - 7 for instance should output -28.

  • @christopherholt3782
    @christopherholt3782 2 ปีที่แล้ว

    LOL loved the intro Kyle!

  • @ayeshaheffner4139
    @ayeshaheffner4139 4 ปีที่แล้ว

    Need help with this: when I try to add in the hands, it pushes all the numbers off my clock and I just have a blank circle. Thanks!

  • @kevinwaag9976
    @kevinwaag9976 ปีที่แล้ว

    freaking brilliant!

  • @usama57926
    @usama57926 4 ปีที่แล้ว +3

    sir how can we add sound effects on seconds hand....🤔🤔🤔🤔🤔

  • @ItsVeronikaBeezy
    @ItsVeronikaBeezy 3 ปีที่แล้ว +1

    what does the before and after declaration stand for / mean?

  • @favourojo3971
    @favourojo3971 2 ปีที่แล้ว

    Thanks alot this was really helpfull

  • @sanjanaporwal6605
    @sanjanaporwal6605 ปีที่แล้ว +1

    Hi, Can you please explain how --rotation can be used for two different classes

  • @vijaykumarjee
    @vijaykumarjee 2 ปีที่แล้ว

    very nicely describe.. love from India...

  • @paulneumann7739
    @paulneumann7739 2 ปีที่แล้ว +1

    This is great. Do you have the steps for how to get the browser to show through the server.js and index.js??

  • @fangyuyang2857
    @fangyuyang2857 3 ปีที่แล้ว

    This is beautiful