Subscribe Our Channel
For Any Kind of Offers, Promotions & Services Update
Please Join Our Telegram
Follow Us on Telegram
Copy Channel Link
Link copied to clipboard!
// Inline keyframes for animations
const style = document.createElement('style');
style.innerHTML = `
@keyframes popIn {
0% { transform: scale(0.8); opacity: 0; }
100% { transform: scale(1); opacity: 1; }
}
@keyframes fadeInItem {
0% { transform: translateX(-20px); opacity: 0; }
100% { transform: translateX(0); opacity: 1; }
}
`;
document.head.appendChild(style);
// Animate the Telegram icon
const telegramIcon = document.getElementById('telegram-icon');
setInterval(() => {
telegramIcon.style.transform = 'scale(1.1)';
setTimeout(() => {
telegramIcon.style.transform = 'scale(1)';
}, 300);
}, 800);
// Animate the button border
const followButton = document.getElementById('follow-button');
const borderAnimation = document.getElementById('border-animation');
followButton.addEventListener('mouseover', () => {
followButton.style.transform = 'scale(1.05)';
borderAnimation.style.clipPath = 'inset(0 0 0 0)';
});
followButton.addEventListener('mouseout', () => {
followButton.style.transform = 'scale(1)';
borderAnimation.style.clipPath = 'inset(0 0 0 100%);'; // Keep border visible
});
// Copy link functionality
const copyLink = document.getElementById('copy-link');
const copyMessage = document.getElementById('copy-message');
const telegramLink = "https://t.me/+F7lSliNDpZxiNDI8";
copyLink.addEventListener('click', () => {
navigator.clipboard.writeText(telegramLink).then(() => {
copyMessage.style.opacity = 1; // Show message
setTimeout(() => {
copyMessage.style.opacity = 0; // Hide message after 2 seconds
}, 2000);
});
});