Hier ein paar Beispiele zu unten stehenden Blogartikel. Neben den im Blogartikel besprochenen Beispiel sind hier auch erweiterte Varianten zu finden, die nicht nur ein HTML Element mit einbeziehen.
Credits: sevenX.de animate.css
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("slideOutLeft").addClass("slideInLeft").show();
})
.mouseleave(function() {
$(this).find('.caption').removeClass("slideInLeft").addClass("slideOutLeft");
});
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("flipOutX").addClass("flipInX").show();
})
.mouseleave(function() {
$(this).find('.caption').removeClass("flipInX").addClass("flipOutX");
});
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("fadeOutUp").addClass("fadeInDown").show();
})
.mouseleave(function() {
$(this).find('.caption').removeClass("fadeInDown").addClass("fadeOutUp");
});
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("rotateOut").addClass("bounceIn").show();
})
.mouseleave(function() {
$(this).find('.caption').removeClass("bounceIn").addClass("rotateOut");
});
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("flipOutY").addClass("lightSpeedIn").show();
})
.mouseleave(function() {
$(this).find('.caption').removeClass("lightSpeedIn").addClass("flipOutY");
});
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("lightSpeedOut").addClass("rollIn").show();
})
.mouseleave(function() {
$(this).find('.caption').removeClass("rollIn").addClass("lightSpeedOut");
});
<h4 class="animated">Das ist eine Überschrift</h4>
<p class="animated">Kurze Beschreibung...</p>
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("rollOut").addClass("rollIn").show();
$(this).find('.caption h4').addClass("slideInLeft");
$(this).find('.caption p').addClass("slideInRight");
})
.mouseleave(function() {
$(this).find('.caption').removeClass("rollIn").addClass("rollOut");
$(this).find('.caption h4').removeClass("slideInLeft");
$(this).find('.caption p').removeClass("slideInRight");
});
<h4 class="animated">Das ist eine Überschrift</h4>
<p class="animated"><a href="" class="label label-danger" rel="tooltip" title="Vergrößern">Zoom...</p>
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("rotateOut").addClass("bounceIn").show();
$(this).find('.caption h4').addClass("rotateIn");
$(this).find('.caption p').addClass("bounceInUp");
})
.mouseleave(function() {
$(this).find('.caption').removeClass("bounceIn").addClass("rotateOut").hide();
$(this).find('.caption h4').removeClass("rotateIn");
$(this).find('.caption p').removeClass("bounceInUp");
});
<img class="animated" src="../img/thumbnail.jpg" alt="...">
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("rollOut").addClass("rollIn").show();
$(this).find('img').addClass("rollOut");
})
.mouseleave(function() {
$(this).find('.caption').removeClass("rollIn").addClass("rollOut");
$(this).find('img').removeClass("rollOut").addClass("rollIn");
});
<h4 class="animated">Das ist eine Überschrift</h4>
<p class="animated">Kurze Beschreibung...</p>
<p class="animated"><a href="" class="label label-danger" rel="tooltip" title="Vergrößern">Zoom...</p>
<img class="animated" src="../img/thumbnail.jpg" alt="...">
$( ".thumbnail" )
.mouseenter(function() {
$(this).find('.caption').removeClass("hinge").addClass("fadeIn").show();
$(this).find('.caption h4').addClass("slideInLeft");
$(this).find('.caption p').addClass("bounceInUp");
$(this).find('img').addClass("pulse");
})
.mouseleave(function() {
$(this).find('.caption').removeClass("fadeIn").addClass("hinge");
$(this).find('.caption h4').removeClass("slideInLeft");
$(this).find('.caption p').removeClass("bounceInUp");
$(this).find('img').removeClass("pulse");
});