我正在使用qTip2。我认为它包括屏幕检测 - 但是,我在iframe中使用工具提示,但它不起作用:
我试过了:
position: {
adjust: {screen: true},
my: 'bottom center', // Position my top left...
at: 'top center' // at the bottom right of...
},
它不起作用
答案 0 :(得分:4)
qTip2插件有一个viewport
选项:
position: {
my: 'bottom center', // Position my top left...
at: 'top center', // at the bottom right of...
adjust: {
screen: true
},
viewport: $(window)
},
它修复了这种情况。