views:

35

answers:

2

Can anyone tell me if the http://pip.io UI is built in AJAX or only JavaScript?

The reason I ask this is that I noticed the UI is scalable in the browser. So with different screen resolutions it displays the same.

+1  A: 

Do you mean scalable as in it works with multiple resolutions? The UI is designed with CSS which allows it to do so. The rest of the frontend is built with Mootools, which handles all the fancy animations and api calls.

David Chen
Hi David, thank you for your answer. I meant indeed that it works with multiple resolutions. I've been looking at your css and saw that the minimal width is 1024 and the minimal height is 500. Is that a technical decision, or is that as small as you needed to go?As for the animations, they are fancy indeed. I like what you are trying to achieve by the social OS and admire that you've build this with such a small team.Thanks for answering my question.
Simbilim
A: 

We set the minimal height and width to accomodate for the design. It is a technical decision because at a smaller resolution, some areas won't be able to render properly. Also since most monitors are at least 1024px wide it shouldn't be an issue with most users.

chenosaurus