我試圖使用jQuery插件上的jQuery動畫製作圖像。在wordpress插件中的jQuery圖像幻燈片
這是我在自定義代碼的JavaScript
$(function(){
$('.esg-entry-cover').on('mouseover',function(){
$('.esg-entry-media').find('img').animate({marginTop:($(this).find('img').height()-$(this).height())},1500)
});
$('.esg-entry-cover').on('mouseleave',function(){
$('.esg-entry-media').find('img').animate({marginTop: ''},1500);
});
});
我想要像在年底this 安迪滑梯的單獨的幻燈片效果的圖像只是高度 感謝您的幫助。
定義「不工作」。你會得到什麼錯誤? – j08691
我的意思是,也許我的代碼是錯誤的。 我不知道如何製作它。 – user3649246
我引用這個https://jsfiddle.net/pqrnt921/4/ 所以我認爲它可以工作。 – user3649246