How To Make Calculator using HTML CSS & JavaScript | Glass morphism Calculator

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 พ.ย. 2024

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

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

    Any Question Related To This Tutorial? Please Let Me Know.

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

      animation- delay

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

      problem

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

      The animation delay property defines when the animation will start. I have given different time from all elements right, according to that time i have given animation will execute form those particular elements

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

      You need to code differently. These code won’t work because its js inline code

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

      Friend, how do I make the calculator work with operations?

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

    You are unbelievably talented, you deserve more followers and more people rooting you on

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

      Thank you so much for your lovely words.

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

    It's amazing, I'll try to do it soon thanks for your videos

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

      Thank you ❤️😊 Carry on

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

    very nice idea

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

    Mine is turning out great!

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

    Html calculator use in online only or coding install to pcb

  • @mr.uzumachiha4121
    @mr.uzumachiha4121 2 ปีที่แล้ว

    Nice work. Please to make it easier can you just copy and paste the html and css code in the comments

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

      @import url('fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
      *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins',sans-serif;
      }
      body{
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(#2196f3 , #e91e63);
      }
      .bubbles{
      position: absolute;
      bottom: -120px;
      display: flex;
      flex-wrap: wrap;
      margin-top: 70px;
      width: 100%;
      justify-content: space-around;
      }
      .bubbles span{
      height: 60px;
      width: 60px;
      background: rgba(255, 255, 255, 0.1);
      animation: move 10s linear infinite;
      position: relative;
      overflow: hidden;
      }
      @keyframes move {
      100%{
      transform: translateY(-100vh);
      }
      }
      .bubbles span.one{
      animation-delay: 2.2s;
      transform: scale(2.15)
      }
      .bubbles span.two{
      animation-delay: 3.5s;
      transform: scale(1.55)
      }
      .bubbles span.three{
      animation-delay: 0.2s;
      transform: scale(0.35)
      }
      .bubbles span.four{
      animation-delay: 6s;
      transform: scale(2.15)
      }
      .bubbles span.five{
      animation-delay: 7s;
      transform: scale(0.5)
      }
      .bubbles span.six{
      animation-delay: 4s;
      transform: scale(2.5)
      }
      .bubbles span.seven{
      animation-delay: 3
      transform: scale(1.5)
      }
      .bubbles span:before{
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 60px;
      width: 40%;
      transform: skew(45deg) translateX(150px);
      background: rgba(255, 255, 255, 0.15);
      animation: mirror 3s linear infinite;
      }
      @keyframes mirror {
      100%{
      transform: translateX(-450px);
      }
      }
      .bubbles span.one:before{
      animation-delay: 1.5s;
      }
      .bubbles span.two:before{
      animation-delay: 3.5s;
      }
      .bubbles span.three:before{
      animation-delay: 2.5s;
      }
      .bubbles span.four:before{
      animation-delay: 7.5s;
      }
      .bubbles span.five:before{
      animation-delay: 4.5s;
      }
      .bubbles span.six:before{
      animation-delay: 0.5s;
      }
      .bubbles span.seven:before{
      animation-delay: 6s;
      }
      .container{
      z-index: 12;
      width: 360px;
      padding: 15px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      border-top: 1px solid rgba(255, 255, 255, 0.5);
      border-left: 1px solid rgba(255, 255, 255, 0.5);
      }
      .container input[type="text"]{
      width: 100%;
      height: 100px;
      margin: 0 3px;
      outline: none;
      border: none;
      color: #fff;
      font-size: 20px;
      text-align: right;
      padding-right: 10px;
      pointer-events: none;
      background: transparent;
      }
      .container input[type="button"]{
      height: 65px;
      color: #fff;
      width: calc(100% / 4 - 5px);
      background: transparent;
      border-radius: 12px;
      margin-top: 15px;
      outline: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      }
      .container input[type="button"]:hover{
      background: rgba(255, 255, 255, 0.1);
      }

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

    It's awesome 🥰
    Thank u soo much

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

      Always welcome my friend ❤️😊

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

    This one is the best man ❤️❤️

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

      Thank you bro ❤️😊

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

    Amazing project Sir
    Sir pls quick question which extension did you use to show the color properties on atom

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

      It's Pigment extension

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

      @@CodingLabYT Thanks so much Sir love you you're amazing

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

    Loved it

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

    Amazing 👍

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

      Thank you bro 😊❤️

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

    Nice yaar legend coder

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

      Thank you bro❤️😊

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

    Friend, how do I make the calculator work with operations?

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

    How do you learn to make such incredible animations ?

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

    super !!!

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

    Can you explain how you are evaluating?

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

    What is that man it's like i entered into another dimension 😁😁😁😁😁

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

      😀😀✌️

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

      19.42 is used to clear all value

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

    Daami xa

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

      Thank you bro ❤️😊

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

    Hi! May I ask for your help with my homework? Thank you

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

    For some reason, I can't click on the numbers and operators
    Did I went something wrong? I did followed every step

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

      You can re-write code or take codes from my website, link is in video description

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

    Can u please make a video on the topic of music player

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

    Is it responsive??

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

    perfect ♥

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

      Thank you 😊❤️

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

    Hey bro.. Why my animation box moving left to right.. how can I fix it..?

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

      Check out in your animation's keyframes bro..

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

    Bro please upload some PHP tutorials with voice on this channel 🙏🙏

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

    someone can tell me how to find link of he using in css file to import fonts.

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

      In upcoming video i will show how to bring fonts. Don't worry

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

    Can you please explain the step in 2:27?

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

      I gave white color to the span using rgba. 255 means white colour's code and 0.1 is opacity for white color

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

      @@CodingLabYT thank you sir and one more question is that when i am doing the step in 2:39(e.g. display: flex;) my function (flex) is not recognizable....can you pls help me out

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

    Wow

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

    Sir just wondering where is the javascript here?

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

      Nvm found it but can it be put in a javascript file like an extension like with css?

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

      My teacher might wonder where it is hehe

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

      In html bro

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

    % is not the percentage

  • @Ex-Coder
    @Ex-Coder 3 ปีที่แล้ว

    Sir, Can you give me the source code please....

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

      Source Code link is in TH-cam video description

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

    98% calculator✓✓