Dark CSS

Text Background Animation on Hover

Facebook
Twitter
WhatsApp

Code Preview

html Code

				
					<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Text Background Animation on Hover</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <h2>Hello World!..</h2>
</body>

</html>
				
			

css Code

				
					* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: monospace;
}

html,
body {
    display: grid;
    height: 100%;
    place-items: center;
    background: #000;
}

h2 {
    font-family: monospace;
    font-size: 1.5rem;
    color: #fff;
    padding: 10px;
    background-image: linear-gradient(#ff2f93, #ff2f93);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position-x: right;
    transition: background-size 500ms;
}

h2:hover {
    background-size: 100% 100%;
    background-position-x: left;
}