/* Hover effects */
nav a:hover {
transform: scale(1.1);
transition: transform 0.3s ease;
}
/* Fade in animation */
section {
animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Smooth transitions */
img {
transition: transform 0.3s ease;
}
img:hover {
transform: scale(1.05);
}
// Add a click counter to each page
let clickCount = 0;
document.addEventListener('click', function() {
clickCount++;
if (clickCount === 5) {
alert('You've clicked 5 times!');
clickCount = 0;
}
});
<script src="script.js"></script>