Great things are on the horizon
Something big is brewing! Our store is in the works and will be launching soon!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP Moving Banner</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
/* Added violet background for the entire page */
background-color: #7B1FA2;
}
.banner-container {
width: 100%;
/* Transparent background lets the page's violet background show through */
background-color: transparent;
color: #FFFFFF;
padding: 15px 0;
overflow: hidden;
position: relative;
/* Optional border to separate it from the violet background if needed */
border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.banner-text {
display: inline-block;
white-space: nowrap;
font-size: 24px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
animation: moveLeftToRight 12s linear infinite;
/* Text shadow keeps it highly readable on violet */
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
@keyframes moveLeftToRight {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100vw);
}
}
.banner-container:hover .banner-text {
animation-play-state: paused;
}
</style>
</head>
<body>
<?php
$offerText = "Grab offer on this session!";
$emoji = "⚡";
?>
<div class="banner-container">
<div class="banner-text">
<?php echo $emoji . " " . htmlspecialchars($offerText) . " " . $emoji; ?>
</div>
</div>
</body>
</html>
Something big is brewing! Our store is in the works and will be launching soon!