<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animated Banner</title>
<style>
@keyframes slideIn {
from { transform: translateX(-100px); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
@keyframes cycleItems {
0%, 33% { opacity: 1; }
34%, 100% { opacity: 0; }
}
body { margin: 0; padding: 0; }
.banner {
position: relative;
width: 320px;
height: 50px;
border: 1px solid #333333;
background-color: #eeeae4;
font-family: 'Fira Sans', sans-serif;
overflow: hidden;
cursor: pointer;
margin: 0 auto;
}
.logo {
position: absolute;
width: 77px;
height: 16px;
left: 7px;
top: 7px;
opacity: 0;
animation: slideIn 0.4s ease-out forwards;
}
.cta {
position: absolute;
left: 7px;
top: 30px;
width: 70px;
height: 15px;
background-color: #327036;
color: #ffffff;
font-size: 8pt;
text-align: center;
line-height: 13px;
font-weight: bold;
border-radius: 50px;
animation: slideIn 0.4s ease-out forwards;
}
.item-container {
position: absolute;
left: 95px;
top: 0px;
width: 225px;
height: 50px;
}
.item {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.8s ease-in-out;
}
.item:nth-child(1) { animation: cycleItems 9s infinite 2s; }
.item:nth-child(2) { animation: cycleItems 9s infinite 5s; }
.item:nth-child(3) { animation: cycleItems 9s infinite 8s; }
.item img {
position: absolute;
right: 0;
top: 0;
width: 112px;
}
.item .text {
position: absolute;
left: -2px;
top: 4px;
color: #333333;
font-size: 11pt;
font-weight: bold;
width: 90px;
line-height: 11pt;
}
.item .price {
position: absolute;
left: 69px;
top: 21px;
font-size: 22pt;
font-weight: bold;
color: #1b5633;
}
.item .price sup {
font-size: 12pt;
}
.item .lb {
font-size: 6pt;
color: #000000;
font-weight: lighter;
}
</style>
</head>
<body>
<div class="banner" onclick="window.open(window.clickTag, '_blank')">
<img src="https://caraluzzis.com/wp-content/uploads/2025/02/logo.png" class="logo" alt="">
<div class="cta">Shop Now</div>
<div class="item-container">
<div class="item">
<span class="text">Boneless Chicken Thighs</span>
<span class="price">2<sup>99</sup><span class="lb">lb.</span></span>
<img src="https://caraluzzis.com/wp-content/uploads/2025/02/item_img_01.png" alt="">
</div>
<div class="item">
<span class="text">Boneless Center<br>Pork Loin</span>
<span class="price">1<sup>99</sup><span class="lb">lb.</span></span>
<img src="https://caraluzzis.com/wp-content/uploads/2025/02/item_img_02.png" alt="">
</div>
<div class="item">
<span class="text">Boneless Loin Sirloin Steaks</span>
<span class="price">6<sup>99</sup><span class="lb">lb.</span></span>
<img src="https://caraluzzis.com/wp-content/uploads/2025/02/item_img_03.png" alt="">
</div>
</div>
</div>
<script>
window.clickTag = "https://www.caraluzzis.com";
</script>
</body>
</html>
6
2
2834KB
2832KB
229.0ms
252.0ms
910.0ms