JS Ajouter une classe lorsqu'il oscille
<script>
$(document).ready(function () {
$(".box").hover(
function () {
$(this).addClass("box-hover");
},
function () {
$(this).removeClass("box-hover");
}
);
});
</script>
Karamolegkos