How To Create a Buttons Text Flip With Hover Effects Using CSS Part-4

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

Using css styles here we are going to create Buttons Change With Hover Effects Using Css. Here you can see, we use text flip animation hover effects also we make button animation with text flip .

How To Create a Buttons Text Flip With Hover Effects Using CSS Part-4

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;
}
.text-center{
    color:darkred;
}

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" />

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

            button.bs-btn:focus {
                outline: none;
            }
            button.bs-btn > span {
                vertical-align: middle;
            }

            button.bs-btn.btn-hover {
                overflow: hidden;
                -webkit-transition: background-color 0.3s ease-in, color 0.3s ease-in;
                transition: background-color 0.3s ease-in, color 0.3s ease-in;
            }
 
            button.bs-btn.btn-hover::after {
                content: attr(data-text);
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                padding: 1em 2em;
                color: #37474f;
                -webkit-transform-origin: -25% 50%;
                transform-origin: -25% 50%;
                -webkit-transform: rotate3d(0, 0, 1, 45deg);
                transform: rotate3d(0, 0, 1, 45deg);
                -webkit-transition: -webkit-transform 0.3s ease-in;
                transition: transform 0.3s ease-in;
            }
            button.bs-btn.btn-hover.btn-text::after {
                color: #fff;
            }
            button.bs-btn.btn-hover:hover::after,
            button.bs-btn.btn-hover:hover {
                -webkit-transition-timing-function: ease-out;
                transition-timing-function: ease-out;
            }
            button.bs-btn.btn-hover:hover {
                background-color: #7986cb;
                color: #7986cb;
            }
            button.bs-btn.btn-hover.btn-text:hover {
                background-color: #d23c14;
                color: #3f51b5;
            }
            button.bs-btn.btn-hover:hover::after {
                -webkit-transform: rotate3d(0, 0, 1, 0deg);
                transform: rotate3d(0, 0, 1, 0deg);
            }

            @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-text" data-text="Add Issue">Add Issue</button>
                <button class="bs-btn btn-hover btn-text" data-text="Send Message">Send Message</button>
                <button class="bs-btn btn-hover btn-text" data-text="Follow">Follow</button>
            </div>
        </div>
        <!-- container end-->

         <!-- Optional JavaScript -->
        <!-- jQuery first, then Popper.js, then Bootstrap JS -->
       <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
       <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
       <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
    </body>
</html>

Related Post