jquery – 手动定位调整qtip工具提示(不工作)

前端之家收集整理的这篇文章主要介绍了jquery – 手动定位调整qtip工具提示(不工作)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

 $('#nav a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },position: {
     corner: {
        target: 'topLeft',tooltip: 'middleRight'
                }
                },style: {
       name: 'dark',width: 230,padding: 3,bottom: 10,textAlign: 'center'
      }
 // Give it some style
   });

我想模拟:css:position:relative; bottom:10px所以工具提示与目标垂直对齐(见图),但我无法完成它

这样试试

$('#nav a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },position: 'relative',textAlign: 'center'
      }
 // Give it some style
   });

但是工具提示的文本被移动了,而不是工具提示本身,

我怎样才能做到这一点?

编辑

尝试’调整’属性,但有一个我找不到的语法错误

$('#nav a[href][title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },position: {

      adjust: {
              x: 10px,y: 10px
       },corner: {
               target: 'topLeft',tooltip: 'middleRight'
                }
     },textAlign: 'center'
      },// Give it some style
   });
最佳答案
您可以使用“position”属性组的“adjust”属性,如下所示:

position: {
    corner: {
        target: 'topLeft',tooltip: 'middleRight'
        },adjust: {
        x: 10,y: 10
        }
    }

我提供的数字是任意的.您可以随意使用它们来定位.

原文链接:https://www.f2er.com/css/427712.html

猜你在找的CSS相关文章