使用qTip2进行边缘检测

时间:2012-06-20 00:56:33

标签: jquery iframe tooltip qtip qtip2

我正在使用qTip2。我认为它包括屏幕检测 - 但是,我在iframe中使用工具提示,但它不起作用:

screenshot showing tooltip hidden under edge of iframe

我试过了:

position: {
    adjust: {screen: true},
    my: 'bottom center',  // Position my top left...
    at: 'top center' // at the bottom right of...
},

它不起作用

1 个答案:

答案 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)
},

它修复了这种情况。