2011-06-07 09:34:56 +00:00

78 lines
1.8 KiB
JavaScript

$(document).ready( function()
{
$('.tooltip').qtip({
content: $('tooltip').title,
style: {name: 'dark', width: 400},
position: {
corner: {target: 'bottomLeft',
rooltip: 'topLeft' } }
});
$('area.detailsgraphique').qtip({
content: $('area.detailsgraphique').title,
style: { name: 'cream', width: 170 },
position: {
corner: { target: 'bottomMiddle',
tooltip: 'topMiddle' } }
});
$('a.tab').click(function(){
$('.active').removeClass('active');
$(this).addClass('active');
$('.content').slideUp();
var contenu_aff = $(this).attr('title');
$("#"+contenu_aff).slideDown();
});
$('.rTip').each(function(){
$(this).qtip({
content: {
text: 'Chargement...',
url: $(this).attr('rel'),
title: { text: $(this).attr('name')}
},
position: {
corner: {
target: 'leftMiddle',
tooltip: 'rightMiddle'
}
},
show: { solo: true},
style: {
tip: true,
border: { width: 1, radius: 0 },
name: 'light',
width: 400
}
});
});
$('.sTip').each(function(){
$(this).qtip({
content: {
text: 'Chargement...',
url: $(this).attr('rel'),
title: { text: 'Evolution - ' + $(this).attr('name')}
},
position: {
corner: {
target: 'leftMiddle',
tooltip: 'rightMiddle'
}
},
show: { solo: true},
style: {
tip: true,
border: { width: 1, radius: 0 },
name: 'light',
width: 420
}
});
});
});
function changerImage(url, type) {
document.images["graphique"+type].src=url;
}