Text Wave Effect in CSS part 6

Опубликовано: 18 Январь 2022
на канале: Masters In Web Design
12
3

Text wave 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: flex;
justify-content: center;
align-items: center;
}
.container{
width: 580px;
height: 300px;
transform: translateY(-150px);
position: relative;
}
.container span{
font-size: 5rem;
font-weight: 900;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
background: #2cdef5;
width: 12%;
height: 80px;
position: absolute;
bottom: 0;
line-height: 100%;
text-align: center;
color: #FFF;
transition: height 0.4s ease;
}
.container span:nth-child(1){
left: 0;
}
.container span:nth-child(2){
left: 4rem;
}
.container span:nth-child(3){
left: 8rem;
}
.container span:nth-child(4){
left: 12rem;
}
.container span:nth-child(5){
left: 16rem;
}
.container span:nth-child(6){
left: 20rem;
}
.container span:nth-child(7){
left: 24rem;
}
.container:hover span{
height: 100%;
}
.container span:nth-child(even){
transition-delay: 0.1s;
}


Смотрите видео Text Wave Effect in CSS part 6 онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Masters In Web Design 18 Январь 2022, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 12 раз и оно понравилось 3 людям.