I am trying to create a fluid circle using HTML and CSS. I am almost done but as it should be fluid and content inside is dynamic, it's changing its shape from circle to oval and others.
Check out this filddle
Can you help me please?
|
|
The Therefore, if you want the circle to remain circular as the content expands, you need to dynamically adjust the height to match the width. You'd probably need to use Javascript to achieve this. Also, please note that Of course, adjusting the An alternative to using the Again, the notable exception is IE8 and earlier, but IE supports an alternative format called VML. Various scripts exist which can convert between SVG and VML, so you can produce a cross-browser solution with SVG plus Javascript. If we're going to accept the Javascript is part of the solution, you could simply use a javascript library to draw it in the first place. My suggestion for this would be Raphael, which generates SVG or VML graphics according to the browser it's running it. Hope that helps. |
||||
|
|
|
You need to set both You can do this in jQuery:
Try to change content (both in width and height) here |
|||
|
|
|
Example of a fluid circle using only HTML and CSS. As mentioned in my comments to the question, the technique is explained in my blog post. Also as mentioned, Safari does not currently play nice with a border radius specified as a percentage. |
|||||||
|
|
The way as Like remove padding from
and add padding into
and Jquery code as mentioned by
See the working Demo: http://jsfiddle.net/2j5Ek/63/ |
||||
|
|
|
Forcing it's maximum height and weight by setting Please note that you may need to use CSS3 |
|||
|
|
|
you need a way to enforce height / width otherwise it will just go oval... its possible! on this html
this jQuery script should do it..
|
|||||||||||
|