【发布时间】:2018-02-16 11:22:30
【问题描述】:
这个插件很杂。我开发了一点这个插件。但我不知道如何添加 arrowColor 和 textColor 属性。我无法分享所有代码。因为超过了最大字符长度。
另外,你可以在 github 上看到原始插件: https://github.com/xbsoftware/enjoyhint
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<!-- EnjoyHint JS and CSS files -->
<script src="enjoyhint.js"></script>
<link href="enjoyhint/enjoyhint.css" rel="stylesheet">
<script type="text/javascript">
$(document).ready(function(){
var enjoyhint_instance = new EnjoyHint({});
var enjoyhint_script_steps = [
{
'next .navbar-brand' : 'Welcome to Turbo Search! Let me guide you through its features.',
'nextButton' : {className: "myNext", text: "Sure"},
'skipButton' : {className: "mySkip", text: "Nope!"}
'arrowColor':'0,255,255'
'textColor':'0,255,0'
},
{
'key #mySearchButton' : "Insert your search request and press 'Enter'",
'keyCode' : 13,
'arrowColor':'0,255,255'
'textColor':'0,255,0'
},
{
'click .btn' : 'This button allows you to switch between the search results'
'arrowColor':'0,255,255'
'textColor':'0,255,0'
},
{
'next .about' : 'Check the list of all the features available',
'shape': 'circle',
'arrowColor':'0,255,255'
'textColor':'0,255,0'
},
{
'next .contact' : 'Your feedback will be appreciated',
'shape': 'circle',
'radius': 70,
'showSkip' : false,
'nextButton' : {className: "myNext", text: "Got it!"},
'arrowColor':'0,255,255'
'textColor':'0,255,0'
}
];
enjoyhint_instance.set(enjoyhint_script_steps);
enjoyhint_instance.run();
});
</script>
【问题讨论】:
-
此插件中没有 'arrowColor' 和 'textColor' 属性。箭头是svg图片,如果要改变颜色,需要修改插件的核心代码。
-
是的,我需要修改插件。如果有更好的人可以更换插件吗?
标签: javascript jquery plugins jquery-plugins