This commit is contained in:
armansansd
2021-06-24 13:58:20 +02:00
30 changed files with 916 additions and 67 deletions

View File

@@ -4,5 +4,14 @@ $(function(){
console.log("$ ready !!");
$('.last-news').slick();
$('.last-ressources').slick();
$('.close-block').click(function(){
$(this).parent().fadeOut();
});
$('.open-block').click(function(){
$(this).prev().fadeIn();
});
});
});