这demo。
我想使用Snap.svg制作图标,所以我希望最终用户重复HTML以获取多个图标。
HTML:
<svg class="box"></svg>
<svg class="box"></svg> <!-- not work -->
<svg class="box"></svg> <!-- not work -->
<svg class="box"></svg> <!-- not work -->
JS:
var box = Snap(".box");
box.rect(0,0,100,100).attr({fill:f00});
答案 0 :(得分:0)
您需要遍历每个.box
并在每个元素上实例化Snap,这是一个示例:
var boxes = [].slice.call(document.querySelectorAll(".box"));
boxes.forEach(function(box){
var box = Snap(box);
box.rect(0,0,100,100).attr({fill:"#f00"});
});
这里的工作示例: