2

我正在开发一个网络应用程序,它使用 jQuery 移动和谷歌图表来为一个/许多自定义构建平台显示不同类型的分析负载。

以上与我的问题并不完全相关,我遇到的问题是大量的传说值。

当然,在我们的图表中使用较少不同的值会更好,但出于某种原因,我们确实需要 20 多个项目。

我们对此都很好,并且它被剪辑到图例中的 2 或 3 页上。不过,我的问题是,有没有人知道浏览按钮的简单解决方案,我们要么想要改变它们,要么想要更大的触摸域,因为用大拇指点击小箭头真的很困难。

http://jsfiddle.net/3DP3F/1/

拇指图标的问题示例。

有谁知道让我们的桌面和电话用户满意​​的体面方法?

4

1 回答 1

2

You cannot edit the size because it's an SVG path. The size of those can only be edited within the tag and not with css. The only option could be with JavaScript. You have to edit the attribute d and figure out higher dimensions as path only uses dimensions instead of height and width.

Play a bit around with

path{
 fill:red;
}

to see what you can do more with it.

This is the current tag from the left arrow:

<path d="M356,162L351,151L345,162Z" stroke="none" stroke-width="0" fill="#cccccc"></path>

Where d is the dimension.

Hope this helped you a bit though this is not the solution.

于 2013-07-18T15:00:18.090 回答