如何在悬停时运行此功能?
$cellButtonGroup.on( 'click', '.button', function() {
var index = $(this).index();
$carousel.flickity( 'select', index );
});
这不起作用:
$cellButtonGroup.on( 'hover',
答案 0 :(得分:1)
试试这个
$cellButtonGroup.hover(function() {
//your code here
});
或者您可以通过以下方式使用上面提到的mouseenter
和mouseleave
。
第一路
$cellButtonGroup.mouseenter(function() {
//your code here
});
$cellButtonGroup.mouseleve(function() {
//revise your code here [ex: if your add some class in mouseenter, remove that in here]
});
第二路
$cellButtonGroup.mouseenter(function(){
$("your selector").addClass("thisIsanExample", function(){
$("you selector").removeClass("thisIsanExample");
})
});