Raphael JS 的径向饼图菜单
Posted
技术标签:
【中文标题】Raphael JS 的径向饼图菜单【英文标题】:Radial Pie Menu With Raphael JS 【发布时间】:2012-09-07 22:35:57 【问题描述】:感谢您查看我的困境。我正在尝试用 raphael 制作一个 SVG 菜单,但我对几何图形很糟糕。
下图显示了我正在制作的内容。我已经用 CSS 创建了蓝色/中心部分,但似乎真的没有其他好的方法来获得白色/外部部分。由于这些元素的块性质,图像和 CSS 在这方面有点失败。我想根据元素的数量生成一系列大小不同的弧。
那么,对于如何获得一系列可点击的弧线,这些弧线形成四分之一圆并可以产生悬停效果,有什么建议吗?如果这很重要,我也想在这些东西上放置图标。
我已经看到了一些在 raphael 中使用饼图的示例,但我只是不知道如何适应它。啊。我应该注意几何学的。
感谢您的宝贵时间。
【问题讨论】:
这有帮助吗? ***.com/questions/5061318/… 你尝试过什么吗?表现出一些努力来解决你自己的问题。说你“几何学很糟糕”不会让你松懈。请参考FAQ entry on the kind of questions expected here。欢迎加入。 【参考方案1】:几何结构并没有那么糟糕,至少它不像elliptical arc path syntax in SVG 那样烦人。两者都是可控的。
这是一个函数,它将生成一系列弧段作为路径,将每个弧段(连同该项目的任意元数据)交给回调函数:
function generateRadialNav( paper, // Raphael's paper object
cx, cy, // x and y coordinates of the center of the circle from which the arcs will be calculated
inner_radius, // pixels from origin to interior arc
radial_thickness, // width of navigation area in pixels
menu_items, // an object with one key per menu item; the value of each key is arbitrary
callback, // a finalization callback for menu items which should accept three arguments: the menu_items key, the path element, and the menu_items value. The first and third parameters are taken directly from the menu_items object.
options ) // Unused but added out of habit.
options = options || ;
var start_radians = options.start_radians || 0;
var end_radians = options.end_radians || Math.PI / 2;
var menu_item_count = 0;
for ( var k in menu_items )
menu_item_count++;
var slice_radians = ( end_radians - start_radians ) / menu_item_count;
var index = 0;
for ( var k in menu_items )
var path = [];
path.push( "M", cx + Math.cos( start_radians + slice_radians * index ) * inner_radius, cy + Math.sin( start_radians + slice_radians * index ) * inner_radius );
path.push( "L", cx + Math.cos( start_radians + slice_radians * index ) * ( inner_radius + radial_thickness ), cy + Math.sin( start_radians + slice_radians * index ) * ( inner_radius + radial_thickness ) );
path.push( "A",
inner_radius + radial_thickness, inner_radius + radial_thickness,
slice_radians, 0, 1,
cx + Math.cos( start_radians + slice_radians * ( index + 1 ) ) * ( inner_radius + radial_thickness ), cy + Math.sin( start_radians + slice_radians * ( index + 1 ) ) * ( inner_radius + radial_thickness ) );
path.push( "L", cx + Math.cos( start_radians + slice_radians * ( index + 1 ) ) * inner_radius, cy + Math.sin( start_radians + slice_radians * ( index + 1 ) ) * inner_radius );
path.push( "A",
inner_radius, inner_radius,
slice_radians, 0, 0,
cx + Math.cos( start_radians + slice_radians * index ) * inner_radius, cy + Math.sin( start_radians + slice_radians * index ) * inner_radius );
path.push( "Z" );
var element = paper.path( path ).attr( fill: 'none', stroke: 'none' );
callback( k, element, menu_items[k] );
index++;
这个函数基本上会计算每个导航项的区域,生成具有该形状的路径,然后将菜单定义传递给回调。任何对图标的支持都必须单独添加,但我建议可以轻松地扩充 menu_items 定义中的数据以支持它。有关此方法的使用示例,请查看my test page——当然,请原谅匆忙的粗糙边缘!
【讨论】:
这太棒了!抱歉回复晚了,我已经放弃了希望,分心了。谢谢!以上是关于Raphael JS 的径向饼图菜单的主要内容,如果未能解决你的问题,请参考以下文章