2012-06-20 207 views
3

我使用qTip2。我認爲它包括網檢測 - 但是,我使用的是iframe中的提示,並且它不工作:qTip2邊緣檢測

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

您是否嘗試過使用'style'屬性調整qTip的寬度?爲什麼不使寬度小於安全登錄框?另外,提示並不完全以輸入爲中心。你有指定的輸入寬度嗎? – chrisvillanueva

回答

4

的qTip2插件有一個viewport選項:

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

它修復了這種情況。