1

我在我的网站上使用qTip 2.0,它说我可以使用 themeroller 来设置我的工具提示的样式。然而,我对如何将 themeroller 与 qTip 一起使用有点困惑?它的页面上有教程,但 Themeroller 的部分是空白的。

任何人都可以帮我解决这个问题,因为我被卡住了。

这是我的 qTip 代码:

<script type="text/javascript">
var $j = jQuery.noConflict();
$j('.tool').qtip({
   content: 'Tool Tip Text',
position: {
  my: 'bottom left', 
  at: 'top left', 
  target: $j('.tool') 
  },
  style: {
  classes: 
  'ui-tooltip-tipsy' /*This is a style that comes with qTip 2.0 - I want to     
                       replace with a themeroller style.*/
}
});
</script>
4

1 回答 1

4
    style: {
        classes: 'ui-tooltip-shadow', // Optional shadow...
        tip: 'top center', // Tips work nicely with the styles too!

        /*
         * The important part: style.widget property

         * This tells qTip to apply the ui-widget classes to
         * the main, titlebar and content elements of the qTip.
         * Otherwise they won't be applied and ThemeRoller styles
         * won't effect this particular tooltip.
         */
        widget: true
    }

需要补充:)

于 2011-09-08T23:22:45.337 回答