A linear interpolation between two or more colours based on the distance from the centre of a circle or ellipse.
0
votes
1answer
16 views
How to create a fading mask in html5 canvas for a white background
I got a circular canvas animation and I want to fade out the edges. The solution I ended up with was to create a larger canvas to put in front with a radial gradient from transparent to whatever color ...
0
votes
0answers
18 views
Four value syntax for radial-gradient's position
MDN says that a radial gradients first argument is A <position>, interpreted in the same way as background-position.
However, when using the four value syntax (e.g right 20px top 20px) that ...
0
votes
1answer
11 views
How do I create a circular gradient in HTML or CSS?
Hey guys I'm wondering if you know of any way on how to create a circular/elliptical gradient that has many colors?
An example of this is shown on the background of this Microsoft logo picture:
...
1
vote
1answer
148 views
Transform radial gradient in kinetic.js
I want to apply a transform to a radial gradient using Kinetic.js.
I have, for example a 200x200 rectangle with a radial gradient from the center (white) to the sides. How can I scale only the ...
0
votes
0answers
29 views
radial gradient and pseudoelement in firefox overlays parts of page
Im using pseudo-element to create gradiented line.
Works fine even for IE9.
But in Firefox I get this weird box that overlays part of window.
This how its looks:
effect in firefox
And here is the css ...
0
votes
1answer
231 views
Draw ellipse gradient
How can I draw an image like below? I created this one in a photo editing tool. But can't really pull it off with iOS.
Ellipse
"Soft corners", in a way it's like a radiant gradient only that it's ...
0
votes
0answers
47 views
Apply gradient color to arc
I am trying to build piechart with gradient colors for arcs. I use following code to create arc. Could someone please tell me how to apply gradient color to only arc area and not to whole rect?
- ...
0
votes
0answers
63 views
How to preallocate RadialGradient?
I'm drawing some circles on a canvas. I want to apply a radial gradient to each of this circle.
I'm currently allocating a new gradient for each circle, but i'm guessing this not a very good idea.
...
1
vote
1answer
167 views
wpf gradient brush that spans multiple elements
Suppose there is an element with irregular shape composed of other elements with arbitrary nesting:
<Window.Resources>
<RadialGradientBrush x:Key="brush">
<GradientStop ...
1
vote
1answer
373 views
HighCharts: How to combine custom colors with gradient
For some while now Im playing with coloring of my pie chart... And either I got my custom colors without gradient, or default colors with gradient... My colors are stored in php field, which I want to ...
1
vote
2answers
272 views
HTML5 Canvas - Drawing Linear Gradients on a Circle (Color Wheel)
I'm trying to draw a circle with, not radial gradients, but linear gradients that go around the circle... Basically, I'm trying to create a color wheel and it has to be dynamic as the colors will be ...
0
votes
1answer
528 views
Gradient colors from d3.scale.category10() with opacity change on a svg circle?
I am trying to apply the colors from the color = d3.scale.category10(); var to the gradient for the circle svg, what am I doing wrong? All I am seeing is the first color of the color = ...
2
votes
1answer
144 views
Radial Gradient and absolute positioning producing different results in different browsers
I have developed a switch board with two electronic switches and two lights, it is producing different results in different browsers.
Chrome Output
In Chrome it is working good.
Click for Larger ...
0
votes
0answers
82 views
Android Radial (Elliptical) Gradient Not Showing Properly (Example)
This code works on my desktop version of Chrome, and on my iPhone, but not on my Android device.
background: -webkit-radial-gradient(50% 50%, 90% 10%, rgb(199, 210, 238) 0%, rgb(45, 60, 255) 100%);
...
0
votes
0answers
68 views
Radial gradient on non horizontal plane
Is there a resource or any piece of code explaining how to add radial gradient to a plane with any arbitrary orientation?
I have the code for extended source of light and horizontal plane. I need to ...
0
votes
1answer
213 views
How to implement oval GradientPaint?
We know that there are a class named RadialGradientPaint in Java and we can use it to have a gradient painting for circle.
But I want to have an oval (ellipse) GradientPaint. How to implement oval ...
0
votes
0answers
111 views
Radial text inner shadow in CSS
I'm trying to create a radial inner text shadow on a masked text animation. Text shadow creates a solid shadow in this case as I'm using a bullet. Any ideas?
<div class="parent">
<div ...
0
votes
1answer
254 views
Radial box-shadow on element
Is there a way to create a box-shadow that radiates in a circle from a rectangular div element? So like a regular shadow, except rounded.
0
votes
2answers
109 views
I wonder if angle gradient is possible
I´m doing some testing on gradients using NSBezierPath and make some progress so far with radial gradients. see first picture. I wonder, however, if it is possible to make angle gradients as in ...
0
votes
0answers
153 views
Can I put gradient radial mask to image and animate this mask?
I have UIImageView, I want to mask it's layer with radial gradient layer...
After that; I want to animate this mask to be double size...
How to implement this ?
I have tried to draw ellipse:
...
0
votes
1answer
151 views
Chrome radial gradient not displaying correctly
I'm using Chrome version 24.0.1312.25 beta-m and I'm trying to get a radial gradient for a small site, it doesn't seem to display correctly in Chrome.
The CSS I'm using is:
html {
background: ...
1
vote
1answer
149 views
Pixelated rendering of radial gradient in Chrome on Windows 7
For reference, see this question: Chrome radial css gradient smoothness.
The OP is having trouble with the smoothness of the gradient, but from the discussion it seems that that's only when using ...
2
votes
1answer
143 views
Moving “Cloud” - Radial Gradient moving with finger
First Q. I have working code to make this move elsewhere in the file -- that's not the question. The question is how do I create a Radial Gradient that can be moved (below API 16).
Preempting snark, ...
0
votes
1answer
143 views
issue to get RadialGradientBrush in wpf
<Border CornerRadius="20" BorderThickness="1" HorizontalAlignment="Left" Height="36" Margin="168,88,0,0" VerticalAlignment="Top" Width="36" BorderBrush="#FFBDD8D7">
...
2
votes
2answers
428 views
Android smooth gradient
Am drawing a simple circle in a Canvas on Android.
Now I need to fill it with some gradient colors, but they are no really smooth.
This its what i have done:
protected void onDraw(Canvas canvas) {
...
0
votes
2answers
223 views
CSS3 Firefox radial gradient disappears
I've got an HTML5 page with the background of:
background: -moz-radial-gradient(center, ellipse cover, #868c93 0%, #28343b 100%);
This works fine, until the page gets long (15000px or so), at ...
0
votes
0answers
254 views
Draw an Angle and fill it with gradient colors
I'm making a custom control and it was fine til my client says "I want it with gradients".
So here I am.
I need to draw an angle and fill it with gradient color. My previous code was this:
- ...
2
votes
1answer
458 views
CSS3 gradients as SVG
On my page i'm using a lot of CSS3 gradients. I would like to provide some SVG fallback for IE and Opera.
Creating SVG fallbacks for CSS3 linear-gradient is pretty easy. I use the following code:
...
0
votes
2answers
386 views
WPF drawing using a RadialGradientBrush type effect?
Using a RadialGradientBrush is simple and allows a center colour to merge into an outer colour. This works fine as a brush for filling the inside of a Rectangle or Border. I want to achieve the effect ...
1
vote
2answers
1k views
Circle with shadow CSS 3
At my web page I have background: gray, and now I need to add a white shadow circle such as shown in the picture. One of my decisions is to add url:('../img/background.png') no-repeat gray but I can't ...
2
votes
2answers
189 views
no-repeat CSS radial-gradient
Is there a way to not repeat the white circle ?
http://dabblet.com/gist/3136266
background: #ffffff;
background-image:
radial-gradient(rgba(255, 255, 255, 1) 50%, rgba(255,255,255,0) 80%),
...
2
votes
1answer
347 views
Cairo Radial Gradient
I'm using a radial gradient in Cairo, but I'm not getting the expected results. The radial gradient I'm getting is much less fuzzy than I'd expect and I can't seem to fiddle with the color stops in ...
3
votes
1answer
130 views
How can I efficiently determine where in a radial gradient the bands are really close together?
When using my radial gradient algorithm with the Spread property set to Reflect or Repeat, I get crazy ass moiré when the bands are too close together. This is normal.
What I have been trying to ...
9
votes
1answer
2k views
Gradient Radius as percentage of screen size
I'm trying to create a shape drawable with radial gradient background, with radius that will adjust to the screen size (take a look at the relevant documentation).
This is my code:
<?xml ...
0
votes
0answers
110 views
Firefox and Safari doesn't render radial gradient smoothly [closed]
I have an issue: Firefox and Safari doesn't render radial gradient smoothly. I can't fix it and can't find anything helpful.
Here's the code:
background-image: -moz-radial-gradient(contain, #fff, ...
1
vote
0answers
314 views
overlapping radial gradients / “light source” effect in KineticJS
I'm looking to produce an effect of light sources in KineticJS. I'm trying to accomplish this by having various objects in the background, and a layer of multiple low-alpha Rect objects filled with ...
0
votes
2answers
541 views
How to apply multiple css radial gradients to a single element
I have the following style applied to my div element:
background-image: -moz-radial-gradient(50% -10%, ellipse closest-corner, rgba(5, 5, 5, 0.7), rgba(0, 0, 0, 0) 100%);
This has the desired ...
2
votes
1answer
87 views
Elliptical Background Gradient
I would like to recreate the background gradient shown here on my web page. Unlike a simple linear gradient it doesn't work well repeated (as an image) such that it can fill a variable length. Can ...
7
votes
2answers
455 views
Drawing Spheres with RadialGradientBrush
I'm trying to draw spherical pieces for a game, in WPF.
Pieces are drawns as Elipses with RadialGradientBrushs.
As you can see below, my black pieces look fantastic,
but it is hard to get the white ...
0
votes
1answer
127 views
RGraph gradient applied to the single circle
I am using the RGraph and I need to create circles with a gradients,
so they look to be 3D spheres.
I have created a new node type called blob and I have implemented the
code as follows. However, the ...
2
votes
1answer
462 views
linear gradient with box-shadow on round button
I'm trying to create a button similar to these http://houseofbuttons.tumblr.com/post/16760351131/starred-checked-action-buttons-by-brendon
and was hoping to do it with just css.
I put together a ...
0
votes
1answer
398 views
how to fill image with gradient of 3 random colors?
I wonder how to fill openCV mat ( image ) with radial gradient of 3 random colors in 3 random positions with 3 random radii using openCV 2 API? Is it possible in one line of code?
1
vote
2answers
824 views
Gradient in Internet Explorer 9 overflows the rounded border
I'm having a problem with rounded borders and a gradient in IE9. The gradient overflows the rounded border.
.cn_item:hover, .selected{
width:300px;
border:1px solid #333333;
...
1
vote
1answer
564 views
CGContextDrawRadialGradient not rendering alpha in PDF?
I have the following drawing, which renders a circle with full color at the center fading to 0 alpha at the edges. When drawing this to the screen, it looks perfect. However, when I draw the same ...
1
vote
1answer
132 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).
...
4
votes
2answers
1k 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 ...
2
votes
1answer
393 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, ...
6
votes
2answers
482 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 = ...
0
votes
1answer
96 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
705 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 ...

