Parcourir la source

better mouseover

master
Pascal Gloor il y a 6 ans
Parent
révision
ba4f01c4cd
1 fichiers modifiés avec 4 ajouts et 7 suppressions
  1. 4
    7
      www/js/autodoc.js

+ 4
- 7
www/js/autodoc.js Voir le fichier

page_home_scroll(); page_home_scroll();
}); });


$('#autodoc_home_modal_left').hover(
function(e) {
$('#autodoc_home_modal_left').mouseenter(function(e) {
$(e.target).addClass("text-light bg-secondary"); $(e.target).addClass("text-light bg-secondary");
$(e.target).removeClass("text-secondary bg-light"); $(e.target).removeClass("text-secondary bg-light");
},
function(e) {
})
.mouseleave(function(e) {
$(e.target).removeClass("text-light bg-secondary"); $(e.target).removeClass("text-light bg-secondary");
$(e.target).addClass("text-secondary bg-light"); $(e.target).addClass("text-secondary bg-light");

}
)
});


}); });



Chargement…
Annuler
Enregistrer