我在我的网站上使用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>