Create Stunning Neon Button Hover Effects | Html CSS Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ม.ค. 2025

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

  • @gorithm
    @gorithm 10 หลายเดือนก่อน +2

    I tried to achieve the effect using a pseudo element with a radial background that is 25% of the whole button size, and masking it to show it's border area only, and animate the background position of the radial gradient to move to corners, although I can't figure out the trailing effect, but I think my approach is more performance saving, Your approach is awesome too

  • @laughingkoffin
    @laughingkoffin ปีที่แล้ว +25

    Code:
    *{
    margin: 0;
    padding:0;
    font-family: sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    }
    .wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000;
    }
    a{
    position: relative;
    display: inline-block;
    padding: 25px 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #03e9f4;
    font-size: 1.2rem;
    transition: .5s;
    overflow: hidden;
    margin-right: 70px;
    }
    a:hover{
    background-color: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
    0 0 25px#03e9f4,
    0 0 50px #03e9f4,
    0 0 300px #03e9f4;
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0005);
    }
    a:first-child{
    filter: hue-rotate(225deg);
    }
    a:last-child{
    filter: hue-rotate(90deg);
    }
    span{
    position: absolute;
    display: block;
    }
    span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,transparent,#03e9f4);
    animation: animate1 1s infinite;
    }
    @keyframes animate1{
    0%{
    left:-100%;
    }
    100%{
    left: 100%;
    }
    }
    a span:nth-child(2){
    top: -100%;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#03e9f4);
    animation: animate2 1s infinite;
    animation-delay: .25s;
    }
    @keyframes animate2{
    0%{
    top:-100%;
    }
    100%{
    top: 100%;
    }
    }
    a span:nth-child(3){
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg,transparent,#03e9f4);
    animation: animate3 1s infinite;
    animation-delay: .5s;
    }
    @keyframes animate3{
    0%{
    right: -100%;
    }
    100%{
    right: 100%;
    }
    }
    a span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#03e9f4);
    animation: animate4 1s infinite;
    animation-delay: .75s;
    }
    @keyframes animate4{
    0%{
    bottom: -100%;
    }
    100%{
    bottom: 100%;
    }
    }

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

      unfortunately "-webkit-box-reflect" does not work in the mozilla firefox browser.

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

      Thank you bro

    • @mrcreator1869
      @mrcreator1869 7 หลายเดือนก่อน +1

      thank you bro you saved a lots of time

    • @BerleyGaming
      @BerleyGaming 13 วันที่ผ่านมา

      Thanks Bro, even tho i already write it all manual, but thanks tho.

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

    Modern CSS Glowing Button Hover Effects|Create Buttons With Awesome Hover Effects |Html CSS Tutorial
    Must watch:th-cam.com/video/AEZEQ_9LTyg/w-d-xo.html

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

    This is just amazing.. Thank you! You are the best!

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

      Thank you for your kind words❤😊

  • @RAMI-hy2bj
    @RAMI-hy2bj ปีที่แล้ว +2

    Many thanks to you! I liked it

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

    Very creative...keep it up its very useful too✨

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

    Wow, thank you!

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

    i wii appreciate your work

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

      Glad to hear that 😊❤️

  • @krishc.8980
    @krishc.8980 ปีที่แล้ว

    you've got some very nice ideas here

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

    Espectacular quedó hermoso

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

    This is amazing thank you

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

      Glad to hear that😊 ❤

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

    It's cool 😮

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

    nth-child(3) bugs and displays stuck on the screen for half a second when the page reloads. Changing to right:100%; fixes it.

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

    Lots of love ❤ keep it up. Can you tell me which course?

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

      Which course means???

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

      Means which course you learn to create this videos ?

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

      Web development

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

      @@coding___bug you means know about html java css ?

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

      @@coding___bug Thankyou so much for this information ❤️

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

    Can you show how you would add a JavaScript layer into this code with functionality

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

    wow amazing ....

  • @HeavenDela
    @HeavenDela 10 หลายเดือนก่อน

    thank u :)

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

    perfect
    so good

  • @ryldy787gekerz9
    @ryldy787gekerz9 4 หลายเดือนก่อน +2

    source code ?

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

    very impressive

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

    what application did you use for that?

  • @Exploregames-x6
    @Exploregames-x6 10 หลายเดือนก่อน

    Thumbnail kaha se banate ho sir please help me mai bhi TH-cam channel khola hu lakin thumbnail ka problem ho raha hai neon button ka thumbnail nahi ban raha hai

    • @coding___bug
      @coding___bug  10 หลายเดือนก่อน

      Canva se bana lo

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

    Super

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

    Webkit-box-reflect:; can't work 😢 how to solve this

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

    Damn, I keep telling people css html beats worpress every time

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

    please tell me what song is playing in the video

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

      Lost sky - Where we started

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

      @@coding___bug
      Thank you !!! You have a good channel. I'm waiting for new videos

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

      Thank you so much that means a lot❤️😊

  • @AHMED_RAAFAT.o
    @AHMED_RAAFAT.o ปีที่แล้ว

    Possible code

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

    Tooop
    Deixa o codigo pra gente, please

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

      codepen.io/Paruuuu/pen/zYmdMWv

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

      Obrigado, vc é sensacional

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

      unfortunately "-webkit-box-reflect" does not work in the mozilla firefox browser.

  • @coolwings5216
    @coolwings5216 3 หลายเดือนก่อน

    Bhai pure site m mereko button ki hi coding nhi krni😅😂😂😂😂😂😂 site bhi bnani h😅

  • @adambamf9365
    @adambamf9365 2 หลายเดือนก่อน

    wow

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

    la canción d quienes

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

    like it

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

    Excellent presentation, bad for UX

  • @Tech-Wear-Official
    @Tech-Wear-Official 8 หลายเดือนก่อน

    can you give me your files because i'm getting some issu in my coding please can you give me your file if you give than my order is complete

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

    need source code

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

      codepen.io/Paruuuu/pen/zYmdMWv

  • @mohamed-cg2hj
    @mohamed-cg2hj ปีที่แล้ว

    please don`t post a music

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

      Bro now I don't post with a music

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

    Source Code den pls

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

      codepen.io/Paruuuu/pen/zYmdMWv

  • @jam-trousers
    @jam-trousers ปีที่แล้ว +2

    Unwatchable

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

      wdym it's really cool

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

      Thank you so much ❤️

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

    unfortunately "-webkit-box-reflect" does not work in the mozilla firefox browser.