我想在JVector Map上创建自定义标记。我的想法是使用CSS3来显示一个简单的红色脉动环。
到目前为止,我只能使用
获得此功能onMarkerLabelShow: function(event, label, code) {
label.html("<div class='pulse'></div>");
},
这是不对的,因为我必须将鼠标悬停在标记上才能工作。它不会一直有效。关于如何实现这个的任何想法?
由于
答案 0 :(得分:3)
我没有设法找到SVG中的圆圈所以我做的是我进入了jvector核心并发现了这一行:
this.shape.addClass('jvectormap-marker jvectormap-element');
并添加了我的动画类:
this.shape.addClass('jvectormap-marker jvectormap-element animated flash');