How To Create a Button Flip Animation With Hover Effects Using Css

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

Here’s another set of rather understated animated buttons that still manage to make a real impact. Some of the effects include the button’s text spreading out, The button itself splitting into an X shape, and color shifts using css

How To Create a  Button Flip Animation With Hover Effect 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 like button-eight.html 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:focus {
                    outline: 0;
                    box-shadow: none;
                }

                button.bs-btn {
                    position: relative;
                    display: inline-block;
                    min-width: 170px;
                    max-width: 170px;
                    background: #b60b03;
                    overflow: hidden;
                    border: 0;
                    padding: 0;
                    height: 50px;
                    cursor: pointer;
                    border-radius: 0px;
                    z-index: 1;
                    margin: 3px 0px;
                }
                button.bs-btn .btn-text {
                    font-size: 14px;
                    text-transform: uppercase;
                    font-weight: 700;
                    color: #fff;
                }

                button.bs-btn .btn-text {
                    position: absolute;
                    top: 0;
                    left: 0;
                    display: inline-block;
                    width: 100%;
                    height: 100%;
                    line-height: 55px;
                    -webkit-transition: top 0.3s;
                    transition: top 0.3s;
                }
                button.bs-btn::after {
                    position: absolute;
                    top: 100%;
                    left: 0;
                    display: block;
                    width: 100%;
                    height: 100%;
                    line-height: 54px;
                    background-color: #ffae24;
                    content: "shop now!";
                    -webkit-transition: top 0.3s;
                    transition: top 0.3s;
                    font-size: 14px;
                    font-weight: 700;
                    color: #fff;
                    text-transform: uppercase;
                }

                button.bs-btn.one::after {
                    content: "My Account";
                }

                button.bs-btn.tow::after {
                    content: "Add More";
                }

                button.bs-btn:hover::after {
                    top: 0;
                }
                button.bs-btn:hover > .btn-text {
                    top: -100%;
                }

                 @media (max-width: 768px) { 
                       button.bs-btn {
                        min-width: 150px;
                        max-width: 150px;
                    } 
                 } 

            </style>
        </head>
        <body>
            <!-- container -->
            <div class="container">
                <h2>Button Animation</h2>
 
                <div class="button">
                    <button class="bs-btn one"><span class="btn-text">My Account</span></button>
                    <button class="bs-btn"><span class="btn-text">Shop New!</span></button>
                    <button class="bs-btn tow"><span class="btn-text">Add More</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