一个简单的 jQuery 插件,用于通过文本消息显示指向 DOM 元素的教练标记(取决于 RaphaelJS)
在元素上创建简单的 Coachy:
$ ( "#myButton" ) . coachy ( {
on : "mouseover" ,
off : "mouseout" ,
message : "If you click there you'll see" ,
} ) ;
在实例化时打开的元素上创建简单的 Coachy:
$ ( "#myButton" ) . coachy ( {
message : "Welcome, click here to begin" ,
autoOpen : true ,
life : 5000
} ) ;