pop in pour biographies

This commit is contained in:
2021-03-31 16:19:21 +02:00
parent 9466b09c0f
commit d7bbc3395d
15 changed files with 584 additions and 131 deletions
@@ -0,0 +1,28 @@
// $( function() {
// $( "#popin" ).dialog({
// autoOpen: false,
// show: {
// effect: "blind",
// duration: 1000
// },
// hide: {
// effect: "explode",
// duration: 1000
// }
// });
//
// $( "#opener" ).on( "click", function() {
// $( "#popin" ).dialog( "open" );
// });
// } );
$(".bouton").click(function(){
$("#modal .message").html("Contenu de ma modal");
$("#modal").addClass("open");
});
$("#modal .mask, #modal a.close").click(function(){
$("#modal").removeClass("open");
return false;
});