<style>
/* Animated header */
.animated-header {
position: relative;
height: 100px;
width: 100%;
overflow: hidden;
}
.animated-header h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 60px;
color: black;
}
.animated-header h1:hover {
animation: bounce 1s ease-in-out;
}
@keyframes bounce {
from {
transform: translate(-50%, -50%) scale(1);
}
to {
transform: translate(-50%, -50%) scale(1.1);
}
}
</style>
<div class='animated-header'>
<h1>Convertohub</h1>
</div>
Comments
Post a Comment