3

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

显示隐藏在 iframe 边缘下的工具提示的屏幕截图

我试过:

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

它没有用

4

1 回答 1

4

qTip2 插件有一个viewport选项:

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

它修复了这种情况。

于 2012-06-20T15:40:08.600 回答