Support Team
We are here to help you. Chat with us on WhatsApp or Telegram!
Cookies are very small text files that are stored on your computer when you visit some websites.
We use cookies to ensure that you have the best user experience on our website. You can remove any cookies already stored on your computer, but please be aware that removing some or all of the cookies may cause certain features of our website to become unavailable.
Kredi | Tarih | Durum |
---|
// 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);
});
});