ShiftSpace / rounded-image

Rounded images using canvas.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rounded Image

This library fixes the broken combination of images with the CSS3 border-radius style in Firefox. Safari 4 has the correct behavior. We are working on supporting more browsers (IE7/IE8). Help appreciated :)

rounded

Usage

You can define CSS like so:

.myimagea {
  -moz-border-radius: 20px 0px 0px 20px;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
}

You markup should look like this:

<img class="rounded-image myimagea" width="160" height="120" src="form.jpg"></img>

When the page loads call the following:

RoundedImage.init();

About

Rounded images using canvas.

License:Other


Languages

Language:JavaScript 100.0%