如何使用jQuery qTIp设置提示维度?

时间:2010-07-06 07:34:00

标签: javascript jquery tooltip qtip

我在修改qTip的笔尖大小(x,y)时遇到了一些麻烦。 我试图以各种方式添加style: { tip: { x:2,y:2 } },但失败了。

如何将其添加到以下脚本?

  // Status Tooltips Style
  $.fn.qtip.styles.statusTooltips = {
    background: '#333333',
    color: 'white',
    textAlign: 'center',
    border: {
      width: 1,
      radius: 5,
      color: '#333333'
    },
    tip: 'leftMiddle',
    name: 'dark'
  }

  // Status Tooltips Init
  $('.status[title]').qtip({
    style: 'statusTooltips',
    position: {
      corner: {
         target: 'rightMiddle',
         tooltip: 'leftBottom'
      }
    }
  });

3 个答案:

答案 0 :(得分:9)

它足够简单:

$("#mytip").qtip({style: { tip: { size: { x: 10, y: 10}} }});

http://craigsworks.com/projects/qtip/docs/tutorials/#tips

答案 1 :(得分:4)

对于qtip 2,您只需设置width对象的heighttip属性:

$("#mytip").qtip({
    style: {
        tip: {
            width: 10,
            height: 10
        }
    }
});

请参阅http://qtip2.com/plugins#tips.width

答案 2 :(得分:-6)

知道了!


  $('.status[title]').qtip({
    style: {background:'#333333',
      color:'white',
      textAlign:'center',
      border:{width: 1, radius: 5, color: '#333333'},
      tip:{corner:'leftMiddle',size: { x:6,y:10 }}
    },
    position: {corner: {target:'rightMiddle',tooltip:'leftBottom'}}
  });

谢谢,StackOverflow,偶尔会出现rubber duck:)