CSS3 Sliding Button Text Animation On Hover - Pure Html and CSS Button Hover Effects - Tutorial

preview_player
Показать описание
Please LIKE our Facebook page for daily updates...
Рекомендации по теме
Комментарии
Автор

How to use loader between two pages. Please make 1 perfect video in deep

aakashpatil
Автор

I tried the tutorial but it doesn't work.
Can anybody tell me what's wrong ?

Here's my code:
body{
margin: 0;
padding: 0;
}

a{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 60px;
line-height: 60px;
text-align: center;
border: 2px solid #262626;
font-size: 30px;
text-decoration: none;
text-transform: uppercase;
font-family: sans-serif;
color: #262626;
overflow: hidden;
}

a span{
display: inline-block;
transition: 0.5s;
}

a span:nth-child(odd):before{
content: attr(data-text);
position: absolute;
transform: translateY(100%);

}

a span:nth-child(odd):before{
transform: translateY(-100%);
}

a:hover span:nth-child(odd):before{
transform: translateY(0);
}

a span:nth-child(even):before{
content: attr(data-text);
position: absolute;
transform: translateY(-100%);

}

a span:nth-child(even):before{
transform: translateY(100%);
}

a:hover span:nth-child(even):before{
transform: translateY(0%);
}

mauritsvanbeek