注意:-我从未使用过此插件,所以如果您认为我误解了您的问题,请不要对答案投反对票,请纠正我
这是演示
click
off
在页面加载时切换所有可移动元素,然后on
在单击元素时切换hasClass
roundabout-in-focus
animateToNextChild
$('ul').roundabout()
$('ul li').off('click');
$('.roundabout-moveable-item').click(function(e){
if($(this).hasClass('roundabout-in-focus'))
{
$(this).on('click')
$('ul').roundabout("animateToNextChild")
}
})
根据评论中提到的要求进行编辑
演示
$('ul').roundabout()
$('.roundabout-moveable-item').click(function(e){
if($(this).hasClass('roundabout-in-focus'))
{
window.open('http://www.google.com')
//use --window.location="http://www.google.com"-- to open in same window
}
})