サイトでqTip 2.0を使用していますが、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>