Salut,

Je rencontre un stress avec un exemple jQUERY Tooltip, un problème de config.

Voilà, je cherche à faire un effet d'apparition et de disparition au survol d'un élément. Jusqu'ici, je sais le faire.

Le problème c'est que mon effet se fait au dessus de mon container, et je souhaiterais que celui ci se fasse en dessous.... ( je parle de l'effet d'apparition )

J'ai testé en rempalcant TOP bar Bottom, mais ça change rien...

Une idée?

//include animation effect//
 
// create custom animation algorithm for jQuery called "bouncy"
$.easing.bouncy = function (x, t, b, c, d) {
    var s = 1.70158;
    if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
    return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
}

// create custom tooltip effect for jQuery Tooltip
$.tools.tooltip.addEffect("bouncy",

	// opening animation
	function(done) {
		this.getTip().animate({top: '+=15'}, 500, 'bouncy', done).show();
	},

	// closing animation
	function(done) {
		this.getTip().animate({top: '-=15'}, 500, 'bouncy', function()  {
			$(this).hide();
			done.call();
		});
	}
); 
 
$("#demo img[title]").tooltip({effect: 'bouncy'});


Merci pour l'éventuelle piste!
Ok, j'ai résolu mon problème en insérant une .tooltip avec une margin-top de la taille de mon container. Smiley cligne