在qTip中获取箭头

时间:2012-03-31 12:13:50

标签: jquery tooltip qtip

如何在qTip中添加箭头。到目前为止我已经

$('.jym').qtip( {
            content: 'Ok', 
            style: { 
                name: 'cream' ,
                border: {
                    width: 3,
                    radius: 8,
                    color: '#6699CC'
                }
            },
            position: {
                corner: {
                    target: 'leftMiddle',
                    tooltip: 'rightMiddle'
                }
            }
        });

生成的工具提示是: enter image description here

但我需要这个:enter image description here

我查看了文档,但不明白如何获得此箭头。

我非常感谢你的帮助。

1 个答案:

答案 0 :(得分:4)

尝试添加

  style: {
    tip: {
      corner: 'leftMiddle'
    }

到现有的选项列表

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