3D Text animation with Marquee effect | HTML and CSS

preview_player
Показать описание
3D Text animation with Marquee effect using HTML and CSS. #3dtext_animation

Please Watch More Videos.
=========================

Рекомендации по теме
Комментарии
Автор

How i set my paragraph under the text animations??

r-jayrosas
Автор

Plz, let me know that background track name.

sadiq
Автор

hello ..sir where i can get this code??

nholmes
Автор

Good Efact but
Iska link description do na copy kar ke

romanticromioyaranavideoof
Автор

Thanks Master
i completed this task and this is the code:
<!DOCTYPE html>
<html>
<head>
<title>3d text</title>
<style>
html, body{
height:100%;
display:flex;
align-items:center;
justify-content:center;
background:skyblue;
}
.box{
display:flex;
}
.inner{
width:1000px;
height:200px;
line-height:200px;
font-size:6em;
font-weight:800;
white-space:nowrap;
overflow:hidden;
box-shadow:4px 6px 8px rgba(0, 0, 0, 0.5);
}
.inner:first-child{
background:indianred;
color:#f1f1f1f1;
transform-origin:right;

}
.inner:last-child{
background:lightcoral;
color:#ff0;
transform-origin:left;

}
.inner span{
position:absolute;
animation:marquee 5s linear infinite;
}
.inner:first-child span{
animation-delay:2.5s;
left:-100%;
}
@keyframes marquee{
from{
left:100%;
}
to{
left:-100%;
}
}
</style>

</head>
<body>
<div class="box">
<div class="inner">
<span>Welcome To N Coding School</span>
</div>

<div class="inner">
<span>Welcome To N Coding School</span>
</div>
</div>
</body>
</html>

newazsharif