Does 37signals manipulate the image on the server side? Or do they use javascript to center and crop the user's image on the client-side?
Asked
Active
Viewed 145 times
0
-
You may want to look up how to do it with CSS border radius: http://codeitdown.com/css-circles/ – Richard Peck Apr 18 '14 at 21:45
1 Answers
1
It's happening client side with the border-radius CSS rules (in a todo's comment section):
img.avatar {
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
}

dzanot
- 63
- 1
- 5