HTML5 - CSS3

TwitterFacebook
Get flash to fully experience Pearltrees
http://css-tricks.com/star-ratings/ Published by Chris Coyier Star ratings are one of those classic UX patterns that everyone has tinkered with at one time or another. I had an idea get the UX part of it done with very little code and no JavaScript. The markup uses the unicode entity for a star (☆) right in it. If you have a UTF-8 charset that should be no big deal.

Star Ratings With Very Little CSS

HTML5 Cheat sheets

Il y a quelques jours, Olivier Gilbon dans un commentaire d’un des articles du BlogNT , présentant une infographie pour tout savoir sur l’ HTML5 (tags, attributs, compatibilité navigateurs), avait indiqué que « l’infographie proposée était très intéressante, mais qu’il était dommage que celle-ci ne soit pas à jour » ! Et aujourd’hui, en parcourant ma timeline sur Twitter , j’ai vu un tweet indiquant qu’ une nouvelle cheatsheet HTML5 était disponible ! En effet, avec les différents ajouts et modifications apportées fréquemment au langage HTML5 , il est difficile de se rappeler des diverses fonctionnalités qu’apportent ce dernier. Ainsi, pour répondre aux différentes interrogations des développeurs et intégrateurs ce n’est pas une, mais trois cheatsheets qui ont été créées par WDl de In Motion Hosting . Vous allez être en mesure de garder toutes les informations avec vous… La cheatsheet est donc divisée en trois graphiques : http://www.blog-nouvelles-technologies.fr/archives/8965/html5-cheat-sheets/

W3C : HTML5 sera terminé en 2014

http://www.blog-nouvelles-technologies.fr/archives/3168/w3c-html5-sera-termine-en-2014/ Ceux qui sont curieux au sujet de la date de sortie définitive d’ HTML5 , peuvent se référer à la date transmise par le W3C ( World Wide Web Consortium ) qui prévoit de finaliser la norme d’ici Juillet 2014 . « This is the first time we’ve been able to answer people’s questions of when it will be done » , a déclaré Ian Jacobs, directeur du marketing et des communications du W3C. « More and more people from more and more industries are asking when it will be done. They require stability in the standard and very high levels of interoperability » . En d’autres termes, le W3C nous indique que c’est la première fois qu’ils peuvent annoncer une date, du fait que de plus en plus d’industries réclament cette date de sortie .
http://css-tricks.com/progressively-enhancing-html5-forms/ Published by Chris Coyier This is what I'm thinking is the best current way to progressively enhance forms. That is, use HTML5 features when they are available and fall back to JavaScript alternatives when they are not. Load up Yepnope.js <script src="scripts/yepnope.js"></script> Yepnope is a "script loader" which will load scripts conditionally .

Progressively Enhancing HTML5 Forms

AwesomeChartJS

http://cyberpython.github.com/AwesomeChartJS/ Description AwesomeChartJS is a simple Javascript library that can be used to create charts based on the HTML 5 canvas element. The main goal during development was to pick sane defaults in order to let the user create simple charts quickly with just a couple of lines of code. One can create at almost no time bar, pie, doughnut and Pareto charts.

Pressed Button State With CSS

NOTE: I’ve covered button link styling using CSS3 in a more recent post which you can read here . The following post is an older method using images. There is certain anchor state in CSS that I don’t see used very often — actually, it’s something I haven’t really used myself, but something which I now realize can be very useful. I’m talking about the “active” anchor state. The active anchor state is the state an anchor (a link) is in when you click on it. The moment you click on a link, it becomes active. http://www.usabilitypost.com/2008/12/16/pressed-button-state-with-css/
A common issue in almost every profession that can drive people completely insane is having to continue from what somebody else started. The main reason for this being the fact that everyone has different ways of working, and sometimes these self-induced habits can be just downright messy. In order to make code look cleaner , and thus, support team work (meaning that somebody else might need to work with what was coded before) , there are certain considerations that should be taken into account.

10 Principles for Keeping Your Programming Code Clean | Onextrapixel - Showcasing Web Treats Without A Hitch

http://www.onextrapixel.com/2011/01/20/10-principles-for-keeping-your-programming-code-clean/
http://downloadsquad.switched.com/2010/11/24/html5-drag-and-drop-upload-comes-to-google-docs/

HTML5 drag-and-drop upload comes to Google Docs

You've been able to do it for a while now in Gmail , and now drag-and-drop uploading has arrived in Google Docs.

nude.js | Nudity detection with JavaScript and HTMLCanvas

http://www.patrick-wied.at/static/nudejs/ nude.js is a JavaScript implementation of a nudity scanner based on approaches from research papers.
The impres­sion of a three dimen­sional cube can be cre­ated using mod­ern CSS tech­niques, with­out the need for JavaScript, imagery, can­vas or SVG.

3D Cube using 2D CSS transformations – Paul R. Hayes

http://www.paulrhayes.com/2009-04/3d-cube-using-css-transformations/
The examples on this page will work properly in Safari, Chrome and Opera.

Animation Using CSS Transforms < CSS

A little more detail: What makes this simulation special is the speed at which everything is computed. Javascript (the language this is written in) is not exactly the most efficient language for this type of computation. This being said, much time was spent squeezing out every little detail that slows things down. The most computationally expensive part is trying to satisfy the constraints. To do this requires the calculation of distance between two points.

Andrew Hoyer | Cloth Simulation

La spécification CSS3 Media Queries définit les techniques pour l'application de feuilles de styles en fonction des périphériques de consultation utilisés pour du HTML. On nomme également cette pratique Responsive Web Design , pour dénoter qu'il s'agit d'adapter dynamiquement le design à l'aide de CSS. Ces bonnes pratiques permettent d'exploiter encore plus les avantages de la séparation du contenu et de la présentation : l'intérêt est de pouvoir satisfaire des contraintes de dimensions, de résolutions et d'autres critères variés pour améliorer l'apparence graphique et la lisibilité (voire l'utilisabilité) d'un site web. Les plateformes exotiques sont concernées en premier lieu : navigateurs mobiles et tablettes, écrans à faibles résolutions, impression, tv, synthèses vocales, plages braille, etc. Approche historique Avec CSS2 et HTML4, il était déjà possible de spécifier un média de destination pour l'application d'une ou plusieurs feuilles de style.

Les Media Queries CSS3 - Alsacréations