Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
30 views1 page

Text Bounce

The document is an HTML file that creates a styled text animation for the word 'EXCELLENT'. It uses CSS to apply a gradient background and an animation effect that cycles the background position. The text is displayed in uppercase and is centered on the page.

Uploaded by

Edward njoroge
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views1 page

Text Bounce

The document is an HTML file that creates a styled text animation for the word 'EXCELLENT'. It uses CSS to apply a gradient background and an animation effect that cycles the background position. The text is displayed in uppercase and is centered on the page.

Uploaded by

Edward njoroge
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html>
<head>
<title></title>
<style>
.animate-charcter
{
text-transform: uppercase;
background-image: linear-gradient(
-225deg,
#231557 0%,
#44107a 29%,
#ff1361 67%,
#fff800 100%
);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 2s linear infinite;
display: inline-block;
font-size: 190px;
}

@keyframes textclip {
to {
background-position: 200% center;
}
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h3 class="animate-charcter"> EXCELLENT</h3>
</div>
</div>
</div>
</body>
</html>

You might also like