Tagged Questions
A linear interpolation between two or more colours based on the distance from the centre of a circle or ellipse.
12
votes
3answers
13k views
CSS3 Gradients to reproduce an 'inner glow' effect from Illustrator with border-radius applied
I am in the process of trying to get my head properly around CSS3 Gradients (specifically radial ones) and in doing so I think I've set myself a relatively tough challenge.
In Adobe Illustrator I ...
9
votes
2answers
3k views
CSS3 Radial Gradients with RGBA()
I am working on a website which uses multiple css3 gradients as overlay for a background tiled with texture image
site url: --snipped--
currently for header i am using following css:
#header {
...
3
votes
1answer
435 views
Drawing a opacity radial gradient on a HTML canvas and use it as a background
I'm looking for a way to make a canvas object look like this: http://www.onetuts.com/attachments/2010/05/07/1_201005072156152XYem.jpg
The gradient should be going from rgba(0,0,0,0.8) to ...
2
votes
0answers
65 views
Issue with CSS -webkit-radial-gradient closest-side option in Chrome 18 dev
Is closest-side still a valid option for radial-gradient? Up until the latest dev release of Chrome (18.0.1003.1 dev) the following radial-gradient worked:
-webkit-radial-gradient( center -12px, ...
2
votes
1answer
655 views
How to make a conical gradient in iOS using Core Graphics / Quartz 2D?
How can I draw such a conical gradient in iOS using Core Graphics / Quartz 2D API?
2
votes
2answers
1k views
Cross-browser CSS for radial gradient and rotate+radius
Thanks to tools like CSS3 Pie and CSS3Please, I have been able to create cross-browser CSS.
But I am still stuck in two areas (because of Internet Explorer of course):
radial gradient
combine ...
2
votes
3answers
5k views
CALayer and CGGradientRef anti-aliasing?
I'm having an odd issue with CALayer drawing for the iPhone. I have a root layer which adds a bunch of sublayers representing "bubbles". The end result is supposed to look something like this:
...
2
votes
2answers
743 views
Display SVG gradients using Flash?
I'm using AS3 (Flash) to read SVG files and display them.
The problem is correctly displaying a linear/radial gradient.
Following is an example of a simple linear gradient from Red to Blue, in SVG.
...
1
vote
1answer
36 views
Union of CSS Radial Gradient vs Intersection
I'm trying to get two radial gradients to render on the same DOM element but it seems like they're rendering the intersection of the two gradients rather than the union (which is what I want).
...
1
vote
2answers
50 views
how to make a css gradient stop after so many pixels?
-moz-radial-gradient(center -200px , ellipse farthest-corner, #323C49 0%, #718299 65%) no-repeat scroll 0 0 transparent;
I have this code above and i just realized that this gradient goes from top ...
1
vote
1answer
49 views
firefox and radialgradient (using html5 canvas)
For some reason, my firefox doesn´t show radial gradient when using a Canvas, does anyone know why? (I don´t have this problem on other computers)
here is some of the code I´m using:
var canvas = ...
1
vote
1answer
97 views
Make a radial gradients radius 200px
How would I make the radius 200px in width and height? I've read that this can be done in pixel units, but every attempt has failed.
background-image: -webkit-radial-gradient(75% 100%, circle ...
1
vote
1answer
97 views
Need help making a CSS radial-gradient that flows seamlessly through 2 elements that are not of the same height or width
http://jsfiddle.net/nicktheandroid/F8v2c/3/
I'm trying to make a radial gradient that flows seamlessly between 2 sibling elements - starting from 10px or 20px to the right of the button, flowing down ...
1
vote
1answer
261 views
Is there a way to draw a CGContextDrawRadialGradient as an oval instead of a perfect circle?
I need a radial gradient in the shape of an oval or ellipse and it seems like it CGContextDrawRadialGradient can only draw a perfect circle. I've been drawing to a square context then copying/drawing ...
1
vote
1answer
362 views
(radial) gradient fill using OpenGL ES
I am currently drawing a shape using the following code;
GLfloat vertex = // vertex points
glLineWidth(2);
glEnableClientState(GL_VERTEX_ARRAY);
glColor4f(1.0, 0.0, 0.0, 1.0);
glVertexPointer(2, ...
1
vote
2answers
583 views
Why is webkit radial gradient not working in Safari?
This is working in Chrome but not in Safari:
background: -webkit-radial-gradient(center, ellipse cover, #fdfdfd, #d3d3d3);
How can I fix it for Safari?
1
vote
3answers
1k views
Make <body> fill entire screen?
I'm using a radial gradient as the background on my webpage, like so:
background-image: -webkit-gradient(radial, 100% 100%, 10, 90% 90%, 600, from(#ccc), to(#000));
It works, but when the content ...
1
vote
2answers
1k views
How to render a radial gradient onto a new UIImage on an iphone
Just wondering how to render a radial gradient (point > circle) onto a new UIImage (iphone).
I saw the following:
...
1
vote
1answer
421 views
CSS radial gradient as modal overlay background like Apple's
I couldnt seem to get it right. I want a radial gradient overlay similar to Apple's, but nothing I was doing seemed close. I'd like the center circle to have a 25% radius, but would settle for a 350px ...
1
vote
2answers
393 views
Why scrolling with moz-radial-gradient is so slow?
I attached this style attribute to body tag:
style="background: -moz-radial-gradient(center center , circle , rgb(223, 224, 228), rgb(189, 193, 200)) no-repeat fixed 0% 0% #fff;"
And scrolling the ...
1
vote
1answer
200 views
Stack gradients in -webkit-gradient
Can I combine 3 gradients into one -webkit-gradient? I want to have an image that has a radial gradient for the "background" and "middle-ground" and a linear gradient for the "foreground". Is this ...
1
vote
1answer
373 views
WPF radial-gradients
I have tried the following code, but the last line causes an error
*Error Argument '1': cannot convert from 'System.Windows.Media.RadialGradientBrush' to 'System.Drawing.Brush'
*
I have visual studio ...
1
vote
2answers
1k views
Can I animate a radial gradient in iPhone?
I would like to animate a radial gradient to shrink and grow the inner radius, as if it were pulsing.
Right now I'm rendering the gradient with CGGradient, but I'm not sure how to animate it. I've ...
1
vote
2answers
493 views
WPF: RadialGradientBrush without gradient?
I want to draw some circles in another circle like this:
Is there a way to tell a RadialGradientBrush not to use gradients but just fixed colors, so I can achieve this? Thanks for any hint!
(I ...
0
votes
1answer
30 views
drawing none Circular gradient
in html 5 when we want to fill shape by radial gradient we use
ctx.createRadialGradient(centerX1,centerY1,radius1,centerX2,centerY2,radius2)
but this fill shapes by circular radial gradient
...
0
votes
1answer
91 views
Firefox radial gradient issue
Trying to set radial gradient to the bg. The problem is, all other browsers shows gradient, on Firefox doesn't. What's wrong? Generated this code on this website ...
0
votes
1answer
50 views
CSS Radial gradient
I have encountered a few problems with CSS radial gradients.
My very simple prototype can be seen here http://payment.hvan.lt/pt/.
In Chrome/Safari/Firefox background gradient is shown correctly, ...
0
votes
1answer
53 views
Css3 webkit gradien old syntax
I've been experimenting with css3 radial gradients and came up with a nice looking gradient:
background-image: -webkit-radial-gradient(center 110%, 80% 100%, transparent 20%, #22853D);
Now, I am ...
0
votes
0answers
88 views
Why doesn't createRadialGradient work on Firefox?
I'm working with the canvas tag of HTML5 and JavaScript to access the canvas methods and properties.
This code works on Chrome but it doesn't work on Firefox: http://jsfiddle.net/thirtydot/BD3xA/.
...
0
votes
2answers
93 views
Circular background behind a transparent png image
I have a div that contains a background image of size 64x64. I would like to give this div a circular shadow or radial background when the user hover's over the div with the mouse.
If I simply give ...
0
votes
1answer
491 views
opera and firefox syntax for radial gradients
Making a vignette of sorts using webkit/moz radial gradients. I have the correct syntax and effect for webkit.. but can't get moz or opera dialed in right. Moz is kind of oblongish.. Opera is ...
0
votes
2answers
499 views
RadialGradientBrush on Rounded-Corner Rectangle
I have a Rectangle with rounded corners (but not an ellipse), something like this:
<Rectangle Stroke="Black" StrokeThickness="2" RadiusX="50" RadiusY="100">
<Rectangle.Fill>
...
0
votes
1answer
923 views
createRadialGradient and transparency
I'm playing around with createRadialGradient() on HTML5 <canvas>. It works like a charm, except when I'm trying to implement (semi-)transparency.
I made this jsfiddle to make things hopefully ...