CSS
- 10 ответов
- 0 вопросов
5
Вклад в тег
$(".wayWeWork").hover(
function () {
$(this).find("h4").animate({top: '20%',left: '5rem'},300, 'linear');
},
function() {
$(this).find("h4").animate({top: '50%',left: '2rem'},300, 'linear');
});