您好,我使用 qtip2 没有任何问题,我想通过经典的跳跃效果将用户的注意力集中在一些注意事项上。
这不是关于如何通过转换显示 qtip,而是关于在显示时跳跃 qtip。
我在 API 中找到了位置效果方法,但我不知道如何使用它来实现无限循环的跳跃效果。
有人知道吗?
虽然不是无限的,我目前正在使用下面的反弹效果。
$('#yourID').qtip({
content: {
text: 'Your alert information!'
},
position: {
my: 'bottom center',
at: 'top left'
},
show: {
ready: true
},
hide: 'unfocus',
events: {
show: function (event, api) {
$(this).show("bounce", { times: 5, distance: 50 }, 1000);
}
},
style: {
classes: 'ui-tooltip-shadow ui-tooltip-red'
}
});