在过去的几个小时里,我一直在努力研究如何使用tooltipster自定义工具提示。我目前正在做:
index.html 的负责人:
<head>
<!--TOOLTIP CSS-->
<link rel="stylesheet" type="type/css" href="node_modules/tooltipster-master/css/tooltipster.css">
<!-- JQUERY -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<!-- TOOLTIP SCRIPT -->
<script src="node_modules/tooltipster-master/js/jquery.tooltipster.min.js"></script>
<script>
$(document).ready(function() {
$('.my-tooltip').tooltipster({
theme: 'tooltipster-noir'
});
});
</script>
</head>
index.html 的正文:
<div class="my-tooltip" title="the message i want to tooltip out">Hover over me!</div>
问题是这仍然给了我非常基本的工具提示,没有任何颜色/主题/位置变化。如果你们都有这方面的经验,我很想听听!