- zoesch.de - blitzkiste.net - gruene-hassberge (norbert.zoesch.de) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
39 lines
1.4 KiB
JavaScript
39 lines
1.4 KiB
JavaScript
$(document).ready(function() {
|
|
$('.about-content .profile-picture').bind('inview', function(event, isInView, visiblePartX, visiblePartY) {
|
|
if (isInView) {
|
|
if (visiblePartY == 'both' || visiblePartY == 'bottom') {
|
|
$('.about-content').css('visibility', 'visible');
|
|
$('.about-content').addClass('animated zoomIn');
|
|
$('.about-content').unbind('inview');
|
|
}
|
|
}
|
|
});
|
|
$('.gallery-content .first-img').bind('inview', function(event, isInView, visiblePartX, visiblePartY) {
|
|
if (isInView) {
|
|
if (visiblePartY == 'both' || visiblePartY == 'bottom') {
|
|
$('.gallery-content').css('visibility', 'visible');
|
|
$('.gallery-content').addClass('animated zoomIn');
|
|
$('.gallery-content').unbind('inview');
|
|
}
|
|
}
|
|
});
|
|
$('.clients-content .first-img').bind('inview', function(event, isInView, visiblePartX, visiblePartY) {
|
|
if (isInView) {
|
|
if (visiblePartY == 'both' || visiblePartY == 'bottom') {
|
|
$('.clients-content').css('visibility', 'visible');
|
|
$('.clients-content').addClass('animated zoomIn');
|
|
$('.clients-content').unbind('inview');
|
|
}
|
|
}
|
|
});
|
|
$('.contact-content .first_input').bind('inview', function(event, isInView, visiblePartX, visiblePartY) {
|
|
if (isInView) {
|
|
if (visiblePartY == 'both' || visiblePartY == 'bottom') {
|
|
$('.contact-content').css('visibility', 'visible');
|
|
$('.contact-content').addClass('animated zoomIn');
|
|
$('.contact-content').unbind('inview');
|
|
}
|
|
}
|
|
});
|
|
});
|