Flipping Card UI Design in HTML & CSS | Card Hover Animation | ASMR programming

Поделиться
HTML-код
  • Опубликовано: 5 июн 2024
  • Flipping Card UI Design in HTML & CSS | Card Hover Animation | Glassmorphism | ASMR programming | No Talking | ASMR Coding
    This video tutorial will teach you to create a Card UI Design with Flip Animation using HTML and CSS. Basically, I have made this card UI in Glassmorphism. The source code link has provided below.
    ---
    Hire us on Fiverr
    ➤ www.fiverr.com/prakashahi
    Follow me on Instagram
    ➤ / coding.np
    Visit my website for helpful coding projects with source code
    ➤ www.codingnepalweb.com/flippi...
    ---
    ⌚ Timestamps:
    00:00 Flipping Card Demo
    00:32 File Structure
    01:05 Making Gradient Balls
    03:21 Making Card with Glassmorphism UI
    10:45 Creating the back face of the card
    15:43 Making Card flip on hover
    17:16 Final result
    #card_design #hover_animation #html_css #notalking
    ---
    🎵 Music Credit:
    Something 'bout July (Instrumental) by RYYZN
    • Something 'bout July (...
    Ikson - We Are Free (Vlog No Copyright Music)
    • Ikson - We Are Free (V...
    Song: Ehrling - You And Me (Vlog No Copyright Music)
    ➤ Video Link: • Ehrling - You And Me (...

Комментарии • 71

  • @Dinesh29293
    @Dinesh29293 7 месяцев назад +1

    This video helped me align flexbox items better using the transform property. I now feel confident and equipped to tackle any challenges in this regard. Thanks! 🙌

  • @rakeshrockb
    @rakeshrockb 6 месяцев назад

    Brilliant!! Thank you for all your time.

  • @mfundomonchwe1313
    @mfundomonchwe1313 10 месяцев назад +2

    enjoyed the tutorial, if possible can make the user enter his/her details on the card live, that would be cool!

  • @djvjofficial
    @djvjofficial 4 месяца назад

    Master card by a master💫

  • @mohitkucheriya2903
    @mohitkucheriya2903 3 дня назад

    Brilliant and very Interesting card design , learn a lot thanku 🙌

  • @Chandan_jangir_
    @Chandan_jangir_ 6 месяцев назад +1

    thanks for this wonderfull playlist

  • @rahultecht.v3147
    @rahultecht.v3147 Месяц назад +1

    You are great i learn lot of thing through you

  • @gulraizcodes
    @gulraizcodes Год назад +19

    Excellent Video! You didn't speak anything but you made it way easier for everybody to understand. ✨

  • @666tradash999
    @666tradash999 10 месяцев назад

    thank you i learned a lot 💌🍀

  • @michaelsglas
    @michaelsglas Год назад +2

    This looks absolutely fantastic….

  • @maskman4821
    @maskman4821 Год назад +1

    Another master piece 👍

  • @elieli2570
    @elieli2570 Год назад

    Beautiful!!

  • @semanticdev
    @semanticdev 8 месяцев назад +1

    Thanks for the tutorial it really opened my eyes to some css properties I was not aware of. I tried loading the website on firefox and safari and noted it didn't work as intended. Any tips about consistency across browsers?

  • @creativedad.4912
    @creativedad.4912 Год назад +1

    Nice 👍 one bro. Good sense of UI design

  • @abdullaalmamun1019
    @abdullaalmamun1019 Год назад

    Good job Beautiful design, go ahead bro🥰🥰

  • @gamerboy_7774
    @gamerboy_7774 5 месяцев назад +1

    Thanks Bro!!!

  • @Rakibulislamsiam-jy2xz
    @Rakibulislamsiam-jy2xz 4 месяца назад

    Thnaks CodingLb

  • @user-qo6ly8xv7u
    @user-qo6ly8xv7u 8 месяцев назад

    Nice👍

  • @priyanshudivyanshu5341
    @priyanshudivyanshu5341 Год назад +1

    This must be really hard to make. Thanks for your effort.(Even though I don't understand anything. I am just a beginner btw)

    • @CodingLabYT
      @CodingLabYT  Год назад +1

      I'm glad you liked it. You can do it!

  • @xbodoubles8974
    @xbodoubles8974 11 месяцев назад +1

    Can the card keep rotating till infinity?
    Nice job.

  • @blog23z
    @blog23z Год назад

    Good Job👌

  • @user-tn4qo4bn5z
    @user-tn4qo4bn5z 10 месяцев назад

    wow

  • @caio_mathe
    @caio_mathe Год назад +2

    Nice tutorial bro!
    What program do you use to record the screen?

  • @MBDev_
    @MBDev_ Год назад

    good job bro.

  • @rp2804
    @rp2804 Год назад

    Please explain what you did at end!

  • @SHUBHAMWARANG-hw2nk
    @SHUBHAMWARANG-hw2nk 2 месяца назад

    when i hover over card it shows front face element also along with back face element which looks like front face in rotate 180 degre and back face in front of user normally have anybody face the same problem

  • @cgianimationtv1828
    @cgianimationtv1828 Год назад

    You good bro

  • @nguyeninhvy1639
    @nguyeninhvy1639 9 месяцев назад

    why do you use span element to combine and and not div element? Is it okay if I use the div element?

  • @black_n_brown
    @black_n_brown Год назад

    A vertical card would be nice

  • @abhaykmr5525
    @abhaykmr5525 4 месяца назад

    From we can download those logo?

  • @anahitae.g4371
    @anahitae.g4371 6 месяцев назад +2

    When I was writing this project I realized that " .card .back-face " with a space between the two classes is different from " .card.back-face " with no space between them ; Because at first , I wrote the first one , but I the styles in css wouldn't implement on the project . But when I changed the first one to the second one , the project got fixed .
    Can anyone tell me why are they different ?

    • @think.alone.c
      @think.alone.c 5 месяцев назад +3

      Certainly! The difference between `.card .back-face` and `.card.back-face` in CSS is related to the specificity of the selector and how it targets elements in the HTML structure.
      1. **`.card .back-face`**: This selector targets an element with the class `back-face` that is a descendant of an element with the class `card`. It means it looks for an HTML structure like this: `...`.
      2. **`.card.back-face`**: This selector targets an element with both classes `card` and `back-face` applied to it. It means it looks for an HTML element like this: `...`.
      The key distinction is in how the styles are applied based on the structure of your HTML. If you wrote styles for `.card .back-face` and it wasn't working initially, it might have been due to the HTML structure not matching that pattern. Once you changed it to `.card.back-face`, it matches the specific element with both classes, and the styles were applied correctly.
      Understanding these selector differences is crucial for styling elements based on their relationships or specific combinations of classes in your HTML document.

  • @rahulsharma7449
    @rahulsharma7449 Год назад +1

    Hello sir, aap konsa keyboard use krte ho

  • @vegita16
    @vegita16 7 месяцев назад

    5:12

  • @user-nv6ys7cy7y
    @user-nv6ys7cy7y 10 месяцев назад +2

    from where to get the logo and chip image?

    • @hiteshverse
      @hiteshverse 7 месяцев назад

      Check the description

  • @vaishnavejp9247
    @vaishnavejp9247 3 месяца назад

    can someone explain why position auto made the backside overlap

    • @harshsachdeva8641
      @harshsachdeva8641 3 месяца назад

      when you set the position as absolute the container show unexpected behaviour . It acts like it is not there and also the dimension it is taking will not be visible and the container below it takes it position thus we are seeing the overlap behaviour . hope it helps

  • @BitsDiscovery
    @BitsDiscovery Месяц назад +2

    Im confused why and when div/ section get use?

    • @sid_liftz
      @sid_liftz Месяц назад

      Div/nav/section/main , it's all same thing just use at a your convenience

    • @vyompatel-1739
      @vyompatel-1739 Месяц назад +1

      Div and section are almost the same but section is a semantic element of the html
      It represents a meaning
      Hope this helps

    • @chesslars
      @chesslars 23 дня назад

      It's for grouping purpose

  • @RavindrAKumar_rk91
    @RavindrAKumar_rk91 8 месяцев назад

    right

  • @cgianimationtv1828
    @cgianimationtv1828 Год назад

    Which school do you learn web development? Pls tell

  • @Niggish69
    @Niggish69 26 дней назад

    html and css file in description is empty

    • @CodingLabYT
      @CodingLabYT  19 дней назад

      www.codingnepalweb.com/responsive-registration-form-in-html-css/

  • @gk7178
    @gk7178 Год назад

    Where is full Sources code

  • @trulyappel
    @trulyappel 9 месяцев назад

    Hi

  • @mohammedrafat9103
    @mohammedrafat9103 Год назад

    backface-visibility:hidden ;
    didnt work

  • @raet5178
    @raet5178 8 месяцев назад

    3:07 How ?

    • @ersik3n
      @ersik3n 4 месяца назад

      Alt+down

  • @vannyakh
    @vannyakh Год назад

    First