我正在使用Raphael的wheelnav.js,并且想将已有的SVG(包含两个单独的路径)用作扩展器。我发现examples是通过使用wheelnav中已有的函数进行绘图来自定义切片,而不是如何使用自定义/现有SVG来自定义扩展器。 预先感谢!
答案 0 :(得分:0)
有一个imgsrc功能,您可以在其中使用现有的SVG。
var wheel = new wheelnav("divWheel");
wheel.spreaderEnable = true;
wheel.spreaderInTitle = "imgsrc:intitle.svg";
wheel.spreaderOutTitle = "imgsrc:outtitle.svg";
wheel.spreaderOutTitleHeight = 50;
wheel.spreaderInTitleHeight = 35;
wheel.spreaderRadius = 0;
wheel.createWheel(["This", "is", "a", "sample"]);