0

我正在使用 qtip 作为工具提示,并根据光标移动了工具提示。我应该调用函数来动态地将箭头指针从左向右移动,然后从右向左移动。锄头我会在鼠标移动时将尖端左侧位置从 10% 更改为 95%。

jQuery('.fire-object a img').each(function() {
                jQuery(this).qtip({
                    // within an each() loop, $(this) refers to the trigger
                    content: jQuery(this).attr('title'),
                    style: { 
                          width: 110,
                          padding: 5,
                          background: '#FFFFFF',
                          color: 'black',
                          textAlign: 'center',
                          border: {
                             width: 7,
                             radius: 5,
                             color: '#FFFFFF'
                          },
                          tip: 'bottomLeft',
                          name: 'dark' // Inherit the rest of the attributes from the preset dark style
                     },
                    position: {
                            my: 'left top',
                            target: 'mouse',
                            viewport: $(window), // Keep it on-screen at all times if possible
                            adjust: {
                                x: 10,  y: 10
                            }
                         },
                    hide: {
                        fixed: true // Helps to prevent the tooltip from hiding ocassionally when tracking!
                    }
                });
                });

示例 有什么想法吗?提前致谢。

4

1 回答 1

0

qTip2 出来了。特点:鼠标跟踪

于 2012-12-14T04:49:43.070 回答