Questions tagged as 'svg'

1
answer

Timeline Google Chart, add slider / picker

Is there a way to insert a picker or slider to capture the time? Example: I should update parameters from the date selected with the picker. google.charts.load('current', { callback: function () { var dataTable = new google....
asked by 27.11.2017 / 16:10
1
answer

SVG image is not displayed in IE, Chrome

I'm trying to insert a vectorized image in SVG format, but I only see it in mozilla firefox, for IE and chrome it does not appear. I have searched for some documentation about svg in navigators, in many I see examples where shapes are drawn by p...
asked by 23.09.2016 / 18:31
2
answers

Fill effect on image with Css Canvas or Svg

I need to know if there is any way to generate a "wave" filling effect ON A PNG IMAGE. It does not matter if it's with CSS, SVG, Canvas or some external javascript library. With a small example, they help me a lot. It would be something like...
asked by 30.10.2018 / 14:03
1
answer

center svg on a

Hello to everyone! I've been trying for a while but there's no way to do it, I try to center a vector object (svg) on a link 'a' and there's no way guys .. When you enlarge the page or make it smaller the svg goes out of 'a' instead of stay insi...
asked by 21.09.2018 / 17:32
1
answer

Query css for certain tags

I have the following: <html ng-app="app"> <head> <title>aprobado</title> <link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link r...
asked by 07.07.2016 / 09:14
2
answers

How to put percentage in the center of the circle?

function circlePath(cx, cy, r, percentil) { var coordx = cx + r * Math.cos(2 * Math.PI * percentil / 100 - Math.PI / 2); var coordy = cy + r * Math.sin(2 * Math.PI * percentil / 100 - Math.PI / 2); var modif = percentil >= 50 ?...
asked by 20.04.2017 / 06:00
4
answers

How to manipulate svg with css?

I'm trying to manipulate svg images with css and I have not really had the slightest success, I guess it's some detail I'm not doing since on the internet there are many examples of this that I'm trying and I guess it's because it works for them...
asked by 22.08.2016 / 21:10
2
answers

SVG file that inherits the current color

Using SVG inline I can make the current color inherit using the value currentColor for property fill . In this way I can make my image adapt to the color of the element that contains it. For example: .rojo { color:red;...
asked by 22.11.2016 / 18:45
1
answer

CSS / Javascript Filling Effect [closed]

I need to generate a fill effect by CSS, CANVAS or SVG, which is done on the PNG image that I have. The filling can be horizontal or vertical. It must be on the image. Current Expected : The effect does not necessarily have to be...
asked by 04.12.2017 / 15:42
1
answer

Select data-attribute within SVG

I have the following SVG inline on my website: <svg xmlns="http://www.w3.org/2000/svg" data-action="counter" class="button" width="320" height="90" viewBox="0 0 320 90"> <rect x="0" y="0" width="320" height="82" rx="10" ry="1...
asked by 23.08.2016 / 13:23