What is the best way to create fluid width/height rounded corners with jquery?
|
6
|
|
|
|
|
|
I use: Jquery-roundcorners-canvas it handles borders, and keeps things the same size, in fact you have to pad in a bit to keep from having letters live in the crease. Its pretty fast, unless you are on ie 6. Same pretty syntax of the other corner packs, but just prettier in general. |
||
|
|
|
$(this).corner(); |
||
|
|
|
That plugin doesn't keep the height the same. I have a 10px high div that I want to round the corners on, when I use that script it adds about 10px onto whats there. |
||
|
|
|
|
In the past, I used the following jQuery based script with a lot of success. I found it to be the best for my needs. http://15daysofjquery.com/wrap-it-up-pretty-corners/13/ You may have to play around with some styles to get it to keep heights exactly the way you want it, but it's flexible enough to hopefully meet your needs. |
||
|
|
|
|
The way the jQuery UI Theming API accomplishes this in Firefox is with "Corner Radius Helpers". Here's what they look like in the CSS that was bundled in my copy of the UI:
Unfortunately, these don't appear to have any effect in IE7 as of this post. In jQuery code, one of these classes might be applied in a fashion something like this:
|
|||
|
|
|
|
If you want full control about the border an d gradient, you can use my iQuery Background Canvas plugin. It works with a HTML5 Canvas element and allows to draw borders and backgrounds in any variation. But you should be able to program JavaScript This is a full featured sample with a background gradient and rounded corners. as you can see, the drawing is completely done in JavaScript, you can set every parameter you want. The drawing is redone on every resize (Due to the resize Event), you can adapt the background drawing to show wat you want on this specific size.
Here is the plugin, and this site makes a vast use of it: jQuery Background Canvas Plugin |
||
|
|
