4.Membuat Glowing Text Dengan Php dan Html
Kode Program :
<!Doctype html>
<html>
<head>
<title>Glowing Text</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body{
background-color: #eaeaea;
font-family:cursive;
}
.glow{
font-size:80px;
color : #fff;
text-align:center;
animation:glow 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes glow{
from{
text-shadow: 0 0 10px yellow,0 0 20px yellow,0 0 30px red,0 0 40px red,0 0 50px red,0 0 60px red,0 0 70px red;
}
to{
text-shadow: 0 0 10px black,0 0 20px black,0 0 30px blue,0 0 40px blue,0 0 50px blue,0 0 60px blue,0 0 70px blue;
}
}
</style>
</head>
<body>
<h1 class="glow">Sance Channel<br>Glowing Text</h1>
</body>
</html>
No comments