Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    How to create Login and Signup Form using HTML CSS and JS

    9 June 2025

    How to create Impossible light bulb using HTML CSS and JS

    5 June 2025

    How to create Animated Rubik Cube using HTML CSS and JS

    3 June 2025
    Facebook X (Twitter) Instagram YouTube Telegram Threads
    Coding StellaCoding Stella
    • Home
    • Blog
    • HTML & CSS
      • Login Form
    • JavaScript
    • Hire us!
    Coding StellaCoding Stella
    Home - JavaScript - How to make Animated Download Button using HTML CSS & JavaScript
    JavaScript

    How to make Animated Download Button using HTML CSS & JavaScript

    Coding StellaBy Coding Stella28 November 2024Updated:28 November 2024No Comments8 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Reddit Email WhatsApp Copy Link

    Let’s create an Animated Download Button using HTML, CSS, and JavaScript. This button will feature an engaging animation when clicked, such as a progress effect or a download icon animation, making it interactive and visually appealing.

    We’ll use HTML to structure the button, CSS to style and animate it, and JavaScript to handle interactivity like triggering the animation on a click.

    Let’s get started on building the Animated Download Button. Whether you’re a beginner or an experienced developer, this project offers a fun way to improve your skills while creating a practical, animated component for web projects. Let’s bring this download button to life!

    HTML :

    The provided HTML code is a template for a webpage that includes a download button animation. It uses CSS styles and JavaScript to create the animation effect. The code includes a container div with multiple anchor tags (<a>) representing different types of buttons. Each button has an associated SVG element for the icon and a list (<ul>) with three list items (<li>) for the button text. The JavaScript code adds functionality to toggle the ‘active’ class on the buttons and list items when clicked. The CSS styles define the appearance and animation of the buttons.

    <!DOCTYPE html>
    <html lang="en" >
    <head>
      <meta charset="UTF-8">
      <title>Download Button Animation</title>
      <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
    <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:400,500,700&amp;display=swap'><link rel="stylesheet" href="./style.css">
    
    </head>
    <body>
    <!-- partial:index.partial.html -->
    <div class="container">
    
        <a href="" class="button">
            <ul>
                <li>&#68;ownload</li>
                <li>&#68;ownloading</li>
                <li>Open File</li>
            </ul>
            <div>
                <svg viewBox="0 0 24 24"></svg>
            </div>
        </a>
    
        <a href="" class="button dark-single">
            <div>
                <svg viewBox="0 0 24 24"></svg>
            </div>
        </a>
    
        <div></div>
    
        <a href="" class="button white-single">
            <div>
                <svg viewBox="0 0 24 24"></svg>
            </div>
        </a>
    
        <a href="" class="button dark">
            <ul>
                <li>&#68;ownload</li>
                <li>&#68;ownloading</li>
                <li>Open File</li>
            </ul>
            <div>
                <svg viewBox="0 0 24 24"></svg>
            </div>
        </a>
    
    </div>
    <!-- partial -->
      <script src='https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/gsap-latest-beta.min.js'></script><script  src="./script.js"></script>
    
    </body>
    </html>
    

    CSS :

    The provided code is a CSS stylesheet that defines the styling for a webpage. It includes various CSS selectors and properties to control the appearance and behavior of different elements on the page.

    body {
      min-height: 100vh;
      display: flex;
      font-family: "Roboto", Arial;
      justify-content: center;
      align-items: center;
      background: #E4ECFA;
    }
    body .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    body .container > div {
      flex-basis: 100%;
      width: 0;
    }
    body .container .button {
      margin: 16px;
    }
    @media (max-width: 400px) {
      body .container .button {
        margin: 12px;
      }
    }
    
    .button.dark-single {
      --background: none;
      --rectangle: #242836;
      --success: #4BC793;
    }
    .button.white-single {
      --background: none;
      --rectangle: #F5F9FF;
      --arrow: #275efe;
      --success: #275efe;
      --shadow: rgba(10, 22, 50, .1);
    }
    .button.dark {
      --background: #242836;
      --rectangle: #1C212E;
      --arrow: #F5F9FF;
      --text: #F5F9FF;
      --success: #2F3545;
    }
    
    .button {
      --background: #275efe;
      --rectangle: #184fee;
      --success: #4672f1;
      --text: #fff;
      --arrow: #fff;
      --checkmark: #fff;
      --shadow: rgba(10, 22, 50, .24);
      display: flex;
      overflow: hidden;
      text-decoration: none;
      -webkit-mask-image: -webkit-radial-gradient(white, black);
      background: var(--background);
      border-radius: 8px;
      box-shadow: 0 2px 8px -1px var(--shadow);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .button:active {
      transform: scale(0.95);
      box-shadow: 0 1px 4px -1px var(--shadow);
    }
    .button ul {
      margin: 0;
      padding: 16px 40px;
      list-style: none;
      text-align: center;
      position: relative;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      font-size: 16px;
      font-weight: 500;
      line-height: 28px;
      color: var(--text);
    }
    .button ul li:not(:first-child) {
      top: 16px;
      left: 0;
      right: 0;
      position: absolute;
    }
    .button ul li:nth-child(2) {
      top: 76px;
    }
    .button ul li:nth-child(3) {
      top: 136px;
    }
    .button > div {
      position: relative;
      width: 60px;
      height: 60px;
      background: var(--rectangle);
    }
    .button > div:before, .button > div:after {
      content: "";
      display: block;
      position: absolute;
    }
    .button > div:before {
      border-radius: 1px;
      width: 2px;
      top: 50%;
      left: 50%;
      height: 17px;
      margin: -9px 0 0 -1px;
      background: var(--arrow);
    }
    .button > div:after {
      width: 60px;
      height: 60px;
      transform-origin: 50% 0;
      border-radius: 0 0 80% 80%;
      background: var(--success);
      top: 0;
      left: 0;
      transform: scaleY(0);
    }
    .button > div svg {
      display: block;
      position: absolute;
      width: 20px;
      height: 20px;
      left: 50%;
      top: 50%;
      margin: -9px 0 0 -10px;
      fill: none;
      z-index: 1;
      stroke-width: 2px;
      stroke: var(--arrow);
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .button.loading ul {
      -webkit-animation: text calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
              animation: text calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
    }
    .button.loading > div:before {
      -webkit-animation: line calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
              animation: line calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
    }
    .button.loading > div:after {
      -webkit-animation: background calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
              animation: background calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
    }
    .button.loading > div svg {
      -webkit-animation: svg calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
              animation: svg calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
    }
    
    @-webkit-keyframes text {
      10%, 85% {
        transform: translateY(-100%);
      }
      95%, 100% {
        transform: translateY(-200%);
      }
    }
    
    @keyframes text {
      10%, 85% {
        transform: translateY(-100%);
      }
      95%, 100% {
        transform: translateY(-200%);
      }
    }
    @-webkit-keyframes line {
      5%, 10% {
        transform: translateY(-30px);
      }
      40% {
        transform: translateY(-20px);
      }
      65% {
        transform: translateY(0);
      }
      75%, 100% {
        transform: translateY(30px);
      }
    }
    @keyframes line {
      5%, 10% {
        transform: translateY(-30px);
      }
      40% {
        transform: translateY(-20px);
      }
      65% {
        transform: translateY(0);
      }
      75%, 100% {
        transform: translateY(30px);
      }
    }
    @-webkit-keyframes svg {
      0%, 20% {
        stroke-dasharray: 0;
        stroke-dashoffset: 0;
      }
      21%, 89% {
        stroke-dasharray: 26px;
        stroke-dashoffset: 26px;
        stroke-width: 3px;
        margin: -10px 0 0 -10px;
        stroke: var(--checkmark);
      }
      100% {
        stroke-dasharray: 26px;
        stroke-dashoffset: 0;
        margin: -10px 0 0 -10px;
        stroke: var(--checkmark);
      }
      12% {
        opacity: 1;
      }
      20%, 89% {
        opacity: 0;
      }
      90%, 100% {
        opacity: 1;
      }
    }
    @keyframes svg {
      0%, 20% {
        stroke-dasharray: 0;
        stroke-dashoffset: 0;
      }
      21%, 89% {
        stroke-dasharray: 26px;
        stroke-dashoffset: 26px;
        stroke-width: 3px;
        margin: -10px 0 0 -10px;
        stroke: var(--checkmark);
      }
      100% {
        stroke-dasharray: 26px;
        stroke-dashoffset: 0;
        margin: -10px 0 0 -10px;
        stroke: var(--checkmark);
      }
      12% {
        opacity: 1;
      }
      20%, 89% {
        opacity: 0;
      }
      90%, 100% {
        opacity: 1;
      }
    }
    @-webkit-keyframes background {
      10% {
        transform: scaleY(0);
      }
      40% {
        transform: scaleY(0.15);
      }
      65% {
        transform: scaleY(0.5);
        border-radius: 0 0 50% 50%;
      }
      75% {
        border-radius: 0 0 50% 50%;
      }
      90%, 100% {
        border-radius: 0;
      }
      75%, 100% {
        transform: scaleY(1);
      }
    }
    @keyframes background {
      10% {
        transform: scaleY(0);
      }
      40% {
        transform: scaleY(0.15);
      }
      65% {
        transform: scaleY(0.5);
        border-radius: 0 0 50% 50%;
      }
      75% {
        border-radius: 0 0 50% 50%;
      }
      90%, 100% {
        border-radius: 0;
      }
      75%, 100% {
        transform: scaleY(1);
      }
    }
    html {
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
    }
    
    * {
      box-sizing: inherit;
    }
    *:before, *:after {
      box-sizing: inherit;
    }

    JavaScript:

    The provided code is a JavaScript snippet that adds a loading animation to a button when it is clicked. It uses the GSAP library to animate an SVG path within the button. The animation includes changing the position and shape of the SVG path to create a loading effect. The duration of the animation is set to 3 seconds.

    document.querySelectorAll('.button').forEach(button => {
    
        let duration = 3000,
            svg = button.querySelector('svg'),
            svgPath = new Proxy({
                y: null,
                smoothing: null
            }, {
                set(target, key, value) {
                    target[key] = value;
                    if(target.y !== null && target.smoothing !== null) {
                        svg.innerHTML = getPath(target.y, target.smoothing, null);
                    }
                    return true;
                },
                get(target, key) {
                    return target[key];
                }
            });
    
        button.style.setProperty('--duration', duration);
    
        svgPath.y = 20;
        svgPath.smoothing = 0;
    
        button.addEventListener('click', e => {
            
            e.preventDefault();
    
            if(!button.classList.contains('loading')) {
    
                button.classList.add('loading');
    
                gsap.to(svgPath, {
                    smoothing: .3,
                    duration: duration * .065 / 1000
                });
    
                gsap.to(svgPath, {
                    y: 12,
                    duration: duration * .265 / 1000,
                    delay: duration * .065 / 1000,
                    ease: Elastic.easeOut.config(1.12, .4)
                });
    
                setTimeout(() => {
                    svg.innerHTML = getPath(0, 0, [
                        [3, 14],
                        [8, 19],
                        [21, 6]
                    ]);
                }, duration / 2);
    
            }
    
        });
    
    });
    
    function getPoint(point, i, a, smoothing) {
        let cp = (current, previous, next, reverse) => {
                let p = previous || current,
                    n = next || current,
                    o = {
                        length: Math.sqrt(Math.pow(n[0] - p[0], 2) + Math.pow(n[1] - p[1], 2)),
                        angle: Math.atan2(n[1] - p[1], n[0] - p[0])
                    },
                    angle = o.angle + (reverse ? Math.PI : 0),
                    length = o.length * smoothing;
                return [current[0] + Math.cos(angle) * length, current[1] + Math.sin(angle) * length];
            },
            cps = cp(a[i - 1], a[i - 2], point, false),
            cpe = cp(point, a[i - 1], a[i + 1], true);
        return `C ${cps[0]},${cps[1]} ${cpe[0]},${cpe[1]} ${point[0]},${point[1]}`;
    }
    
    function getPath(update, smoothing, pointsNew) {
        let points = pointsNew ? pointsNew : [
                [4, 12],
                [12, update],
                [20, 12]
            ],
            d = points.reduce((acc, point, i, a) => i === 0 ? `M ${point[0]},${point[1]}` : `${acc} ${getPoint(point, i, a, smoothing)}`, '');
        return `<path d="${d}" />`;
    }

    In conclusion, creating an Animated Download Button using HTML, CSS, and JavaScript has been an exciting and informative project. By combining HTML for structure, CSS for stylish animations, and JavaScript for interactivity, we’ve crafted a functional and visually captivating button.

    If your project has problems, don’t worry. Just click to download the source code and face your coding challenges with excitement. Have fun coding!

    Animation Button
    Share. Copy Link Twitter Facebook LinkedIn Email WhatsApp
    Previous ArticleHow to make 3D Image Carousel using HTML & CSS
    Next Article How to make Sphere Packing Animation using HTML CSS & JavaScript
    Coding Stella
    • Website

    Related Posts

    JavaScript

    How to create Login and Signup Form using HTML CSS and JS

    9 June 2025
    JavaScript

    How to create Impossible light bulb using HTML CSS and JS

    5 June 2025
    JavaScript

    How to create Animated Rubik Cube using HTML CSS and JS

    3 June 2025
    Add A Comment
    Leave A Reply Cancel Reply

    Trending Post

    Master Frontend in 100 Days Ebook

    2 March 202419K Views

    How to make Modern Login Form using HTML & CSS | Glassmorphism

    11 January 202417K Views

    How to make I love you Animation in HTML CSS & JavaScript

    14 February 202415K Views

    How to make Valentine’s Day Card using HTML & CSS

    13 February 202412K Views
    Follow Us
    • Instagram
    • Facebook
    • YouTube
    • Twitter
    ads
    Featured Post

    How to Make Login Form with Captcha in HTML, CSS & JavaScript

    11 January 2024

    How to make Magic Social Share Menu using HTML CSS and JS

    14 April 2025

    How to make Glowing Firefly button using HTML CSS & JS

    6 August 2024

    How to create Cool Responsive Card Slider using HTML CSS & JavaScript

    17 January 2025
    Latest Post

    How to create Login and Signup Form using HTML CSS and JS

    9 June 2025

    How to create Impossible light bulb using HTML CSS and JS

    5 June 2025

    How to create Animated Rubik Cube using HTML CSS and JS

    3 June 2025

    How to Create Animated Bicycle Product Card using HTML & CSS

    1 June 2025
    Facebook X (Twitter) Instagram YouTube
    • About Us
    • Privacy Policy
    • Return and Refund Policy
    • Terms and Conditions
    • Contact Us
    • Buy me a coffee
    © 2025 Coding Stella. Made with 💙 by @coding.stella

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Looks like you're using an ad blocker. We rely on advertising to help fund our site.
    Okay! I understood