jQuery and ASP.NET

February 16, 2010

Rounded Corners with the Cornerz jQuery plugin




I found a useful plugin created by Johan Fox to create rounded corners with ease. The output looked consistent in most of the latest browsers I tested it on. You can download the plugin over here. Here’s how to use this plugin in your applications:

<html xmlns="http://www.w3.org/1999/xhtml">
<
head id="Head1">
<
title>Cornerz Plugin</title>
<
script language="javascript" type="text/javascript"
src="http://code.jquery.com/jquery-latest.js">
</
script>
<
script language="javascript" type="text/javascript"
src="http://github.com/weepy/cornerz/raw/master/cornerz.js">
</
script>
<
style type="text/css">
.cordiv{
height: 200px;
width: 200px;
background-color:Blue;
}
</style>
<
script type="text/javascript">
$(function() {
$('#divOne').cornerz();
$('#divTwo').cornerz({
radius: 45
});
});
</script>
</
head>
<
body>
<
form id="form1">
<
div>
<
div id="divOne" class="cordiv">
</
div>
<
br /><br /><br />
<
div id="divTwo" class="cordiv">
</
div>
</
div>
</
form>
</
body>
</
html>


OUTPUT

Rounded Corners

See a Live Demo

Note: You may experience a lag before the corners are shown. To avoid the lag, download the cornerz plugin on your local machine and then reference it from there.


Bookmark this link on del.icio.us (saved by 0 users)

Did you like this post?
kick it on DotNetKicks.com
subscribe via rss subscribe via e-mail
print this post follow me on twitter
Others Also Read..

comments

4 Responses to "Rounded Corners with the Cornerz jQuery plugin"
  1. Amit said...
    February 16, 2010 9:55 AM

    this is just awesome

  2. Brad said...
    March 1, 2010 6:37 AM

    Positioning is off in IE7. Box content is shifted to the right.

  3. Fred said...
    July 8, 2010 2:47 PM

    the demo doesnt seem to work. why is the script not documented at all?? wow.

    i can't see the visual verification code?


    FU - k!

  4. Suprotim Agarwal said...
    July 8, 2010 5:41 PM

    I just cross checked the demo on IE8 as well as Firefox. Works just fine!

 

Copyright 2010 All Rights Reserved DevCurry.com by Suprotim Agarwal