It is necessary that when you hover on a certain .card in .fastview , .backet and .click class .hide removed. Could only write
$(function() { $(".card").mouseover(function() { $(".basket, .click, .fastview").removeClass("hide"); }); $(".card").mouseout(function() { $(".basket, .click, .fastview").addClass("hide"); }) }) as a result, the class .hide is removed on all .card , but only on the one you direct. help who than can)
