Использование Themroller с qTip 2.0 - PullRequest
       12

Использование Themroller с qTip 2.0

1 голос
/ 09 сентября 2011

Я использую 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>

1 Ответ

4 голосов
/ 09 сентября 2011
    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
    }

Необходимо добавить:)

...