MediaWiki:Common.js : Différence entre versions
De Wiki ODR
Ligne 4 : | Ligne 4 : | ||
/*Carré ODR*/ | /*Carré ODR*/ | ||
$(document).ready(function() { | $(document).ready(function() { | ||
− | $("#carre_odr"). | + | $("#carre_odr").mouseover(function(){ |
− | document.getElementById("carre_odr").style. | + | document.getElementById("carre_odr").style.box-shadow="-1px 2px 10px 3px rgba(0, 0, 0, 0.3) inset" ; |
window.open('./Sous_portail_odr','mywindow'); | window.open('./Sous_portail_odr','mywindow'); | ||
return false; | return false; |
Version du 16 août 2017 à 08:12
/* Tout JavaScript ici sera chargé avec chaque page accédée par n’importe quel utilisateur. */ // Can also be used with $(document).ready() /*Carré ODR*/ $(document).ready(function() { $("#carre_odr").mouseover(function(){ document.getElementById("carre_odr").style.box-shadow="-1px 2px 10px 3px rgba(0, 0, 0, 0.3) inset" ; window.open('./Sous_portail_odr','mywindow'); return false; }); }); /*Carré FEADER*/ $(document).ready(function() { $("#carre-feader").click(function(){ document.getElementById("carre-feader").style.cursor = "pointer"; window.open('http://www.europe-en-france.gouv.fr/','mywindow'); return false; }); }); /******** Sous-portail ********/ /*Dernier article*/ $(document).ready(function() { $("#carre_derarticle1").click(function(){ document.getElementById("carre_derarticle1").style.border="none" ; window.open('./Utilisateur','mywindow'); return false; }); }); $(document).ready(function() { $("#carre_derarticle2").click(function(){ document.getElementById("carre_derarticle2").style.border="none" ; window.open('./Dossier_thématique','mywindow'); return false; }); });