How To Create a Zoom In and Zoom Out Animation Buttons Using Css

admin_img Posted By Bajarangi soft , Posted On 27-01-2021

Using Css styles here we are going to create a zoom in and zoom out animation button with border and hover effects,. Also, at the blinking element class, use the animation property, with the keyframe above, the blinking duration you want, timing function at step-end, iteration count infinite and direction alternate.

How To Create a Zoom In and Zoom Out Animation Buttons Using Css

Step 1:Create css file like style.css.

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;1,100;1,300&family=Slabo+27px&display=swap");

*::after,
*::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
}

ul,
li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

p {
    margin: 0px;
    padding: 0px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

table,
thead,
tbody,
tr,
th,
td {
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

hr {
    margin: 0px;
    padding: 0px;
}

input,
button,
select,
optgroup,
textarea {
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

a,
strong,
label,
span,
img,
b {
    font-family: "Roboto", sans-serif;
    transition: all 0.3s ease 0s;
    font-style: normal;
}

a,
a:hover,
a:focus,
a:active,
a:link {
    outline: none;
    text-decoration: none;
    color: #000;
}

a.bs-btn:focus {
    outline: 0;
    box-shadow: none;
}

button.bs-btn:focus {
    outline: 0;
    box-shadow: none;
}

Step 2:Create html file and import style.css in it.
<!DOCTYPE html>
<html lang="en">
    <head>
        <!-- Required meta tags -->
        <title>animaion button hover one</title>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
      <!-- Bootstrap CSS -->
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">    
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
        <link rel="stylesheet" type="text/css" href="css/style.css" />

        
        <link rel="stylesheet" type="text/css" href="css/style.css" />

        <style type="text/css">
           button.bs-btn {
                position: relative;
                display: inline-block;
                min-width: 170px;
                max-width: 170px;
                padding: 14px 5px;
                background: no-repeat;
                vertical-align: middle;
                -webkit-backface-visibility: hidden;
                -moz-osx-font-smoothing: grayscale;
                font-weight: 600;
                font-size: 16px;
                border: 1px solid;
                cursor: pointer;
                color: #fff;
                z-index: 1;
                margin: 3px 0px;
            }
            button.bs-btn:focus {
                outline: none;
            }
            button.bs-btn > span {
                vertical-align: middle;
            }

            button.bs-btn.btn-hover {
                background: none;
                border: none;
            }
            button.bs-btn.btn-hover.btn-animate {
                -webkit-transition: color 0.3s;
                transition: color 0.3s;
                -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
                transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
            }
            button.bs-btn.btn-hover > span {
                padding-left: 0.35em;
            }
            button.bs-btn.btn-hover::before,
            button.bs-btn.btn-hover::after {
                content: "";
                z-index: -1;
                border-radius: inherit;
                pointer-events: none;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                -webkit-backface-visibility: hidden;
                -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
                transition: transform 0.3s, opacity 0.3s;
                -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
                transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
            }
            button.bs-btn.btn-hover::before {
                border: 2px solid #1833c2;
                opacity: 0;
                -webkit-transform: scale3d(1.2, 1.2, 1);
                transform: scale3d(1.2, 1.2, 1);
            }

            button.bs-btn.btn-hover::after {
                background: #fff;
            }
            button.bs-btn.btn-hover.btn-animate::after {
                background: #1833c2;
            }

            button.bs-btn.btn-hover.btn-animate:hover {
                color: #1833c2;
            }
            button.bs-btn.btn-hover:hover::before {
                opacity: 1;
                -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
            }
            button.bs-btn.btn-hover:hover::after {
                opacity: 0;
                -webkit-transform: scale3d(0.8, 0.8, 1);
                transform: scale3d(0.8, 0.8, 1);
            }

            @media (max-width: 768px) { 
                 button.bs-btn {
                    min-width: 150px;
                    max-width: 150px;
                 } 
           }
        </style>
    </head>
    <body> 
        <!-- container -->
        <div class="container">
            <h2>Button Animation</h2>
            <h2>hover</h2>
            <div class="button">
                <button class="bs-btn btn-hover btn-animate"><span>Add New</span></button>
                <button class="bs-btn btn-hover btn-animate"><span>Locate</span></button>
                <button class="bs-btn btn-hover btn-animate"><span>Schedule</span></button>
            </div>
        </div>
        <!-- container end -->

        <!-- Optional JavaScript -->
        <!-- jQuery first, then Popper.js, then Bootstrap JS -->
        <script src="js/jquery-3.5.1.min.js"></script>
        <script src="js/popper.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/jquery.min.js"></script>
        <script src="js/jquery.js"></script>
    </body>
</html>

Related Post