Cool text hover effect in CSS
/*CSS*/
*,*::before,*::after{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: sans-serif;
width: 100%;
min-height: 100vh;
background: radial-gradient(#D9D9D9, #FFF);
display: grid;
place-items: center;
}
.container{
width: 580px;
height: calc( 100% - 10em );
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
}
.container .hover{
display: inline-block;
height: 100%;
position: relative;
}
.container .hover span:nth-child(1){
position: absolute;
top: 0;
bottom: 50%;
width: 100%;
}
.container .hover span:nth-child(2){
position: absolute;
top: 50%;
bottom: 0%;
width: 100%;
}
.container .hover span:nth-child(3){
display: block;
height: 100%;
font-size: 5rem;
color: #FFF;
text-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
line-height: 10;
font-weight: 900;
margin-top: 0;
transition: margin-top 0.4s ease;
}
.container .hover span:nth-child(1):hover~span{
margin-top: 40px;
}
.container .hover span:nth-child(2):hover~span{
margin-top: -40px;
}
Смотрите видео Cool Text Hover Effect in CSS part 5 онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Masters In Web Design 17 Январь 2022, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 21 раз и оно понравилось 2 людям.