<script>
// Set the fixed offer end UTC time
const offerEndUTC = new Date('2024-12-12T00:00:00Z').getTime(); // Replace with your UTC end time
// Create a container div
const offerDiv = document.createElement('div');
offerDiv.id = 'offerDiv';
offerDiv.style.position = 'fixed';
offerDiv.style.bottom = '0';
offerDiv.style.left = '0';
offerDiv.style.right = '0';
offerDiv.style.backgroundColor = '#ffffff';
offerDiv.style.color = '#333';
offerDiv.style.display = 'flex';
offerDiv.style.justifyContent = 'space-between';
offerDiv.style.alignItems = 'center';
offerDiv.style.padding = '10px 15px';
offerDiv.style.boxShadow = '0 -2px 5px rgba(0, 0, 0, 0.2)';
offerDiv.style.zIndex = '1000';
// Add the offer text
const offerText = document.createElement('span');
offerText.style.fontSize = '16px';
offerText.style.fontWeight = 'bold';
offerText.style.color = '#333';
// Update the countdown timer every second
const updateCountdown = () => {
const currentTimeUTC = new Date().getTime(); // Current UTC time in milliseconds
const timeLeft = offerEndUTC - currentTimeUTC;
if (timeLeft > 0) {
const hours = Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((timeLeft % (1000 * 60)) / 1000);
offerText.textContent = `Offer ends in ${hours}h ${minutes}m ${seconds}s`;
} else {
offerText.textContent = 'Offer has ended!';
clearInterval(countdownInterval); // Stop the countdown
}
};
const countdownInterval = setInterval(updateCountdown, 1000); // Start the countdown
updateCountdown(); // Initial call to set the text immediately
// Create a "Buy Now" button
const buyNowButton = document.createElement('button');
buyNowButton.id = 'buyNowButton';
buyNowButton.textContent = 'Buy Now';
// Apply styles to the button
buyNowButton.style.backgroundColor = '#ff5722';
buyNowButton.style.color = 'white';
buyNowButton.style.border = 'none';
buyNowButton.style.padding = '10px 20px';
buyNowButton.style.fontSize = '16px';
buyNowButton.style.fontWeight = 'bold';
buyNowButton.style.cursor = 'pointer';
buyNowButton.style.borderRadius = '5px';
buyNowButton.style.transition = 'all 0.3s ease';
buyNowButton.style.animation = 'pulse 1.5s infinite';
// Add hover effect for the button
buyNowButton.addEventListener('mouseover', () => {
buyNowButton.style.backgroundColor = '#e64a19';
});
buyNowButton.addEventListener('mouseout', () => {
buyNowButton.style.backgroundColor = '#ff5722';
});
// Add click event to handle button click
buyNowButton.addEventListener('click', () => {
// Add your checkout link here
});
// Append text and button to the container div
offerDiv.appendChild(offerText);
offerDiv.appendChild(buyNowButton);
// Append the container div to the body
document.body.appendChild(offerDiv);
// Add keyframes for pulse animation
const style = document.createElement('style');
style.textContent = `
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
50% {
transform: scale(1.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
100% {
transform: scale(1);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
}
`;
document.head.appendChild(style);
</script>