继续讨论之后:
Pause Flexslider when overlay is open
PrettyPhoto overlay被称为div.pp_overlay但是当我修改代码来解释它时,它会忽略它。
start: function(slider) {
$('div.pp_overlay').hover(function() {
slider.pause();
});
$('div.pp_overlay').click( function() {
slider.resume();
});
}
});
我错过了什么吗?
答案 0 :(得分:0)
也许您需要在
中调用该函数jQuery(document).ready(function{
*/Here goes the function/*
});
或
jQuery(window).load(function{
*/Here goes the function/*
});
最诚挚的问候。