所以我找到了工作的一個完美的jsfiddle這裏:獲得一個ALT標記了一個img露面懸停
$('img', '.thumb').each(function() {
$(this).parent().append('<div class="thumbnail-text">' + this.alt + '</div>');
}).bind({
mouseenter: function() {
$(this).siblings('.thumbnail-text').show();
},
mouseleave: function() {
$(this).siblings('.thumbnail-text').hide();
}
});
,但我不能爲我的生活弄清楚如何讓它使用WordPress的畫廊插件在這裏工作:
http://www.adammichaelogden.com/my_work/
我用盡了一切我能想到的,我只知道它可能索姆非常簡單,我正在看。任何幫助?
WordPress的畫廊插件,請檢查是否jQuery的負載或沒有,因爲當我在控制檯我檢查,這是沒有得到加載,$是undefined對我來說,請檢查 –