HTML 5 nova era da web
Assistam a esta apresentação feita pelo André Luís webdesigner do sapo e vejam as diferenças e novidades do html 5
http://www.slideshare.net/andr3/html5-a-nova-era-da-web
Video em JS
Em breve esperamos que todos os vídeos passem a ser vistos num player em js em vez do tradicional flash , o que vai tornar o carregamento das páginas mais rápido especialmente se utilizarem o google chrome, que está super rápido a carregar javascript.
Video JS, leitor de vídeo que utiliza HTML5 e Javascript .
usar jquery
Abaixo pode ver uns bons exemplos de como usar o jquery ..
http://www.9lessons.info/2008/08/jquery-ajax-and-php-projects-9lessons.html
http://www.smashingmagazine.com/2010/04/27/45-useful-jquery-techniques-and-plugins/
CSS — Truques dicas exemplos
Abaixo apresento alguns truques para se usar no css que por vezes são muito úteis e evitam problemas futuros
http://webdeveloperplus.com/css/25-incredibly-useful-css-tricks-you-should-know/
css técnicas
http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/
Ferramentas para optimizar o css
http://www.smashingmagazine.com/2006/09/02/list-of-css-tools/
http://www.smashingmagazine.com/2008/12/09/50-really-useful-css-tools/
Javascript técnicas
http://www.smashingmagazine.com/2008/09/11/75-really-useful-javascript-techniques/
Redesenhar os botões padrão (submit) com css :
http://particletree.com/features/rediscovering-the-button-element/
Animações sem flash jquery
Agora é fácil criar aplicações sem precisar do adobe flash instalado, basta só usar HTML e JavaScript
tooltip
como agora os balões andam muito na moda, deixo aqui umas dicas :=)
qTip http://craigsworks.com/projects/qtip/demos/
JQuery
Firefox accelerometer
Paul Rouget shows off some cool new demos that are baking on the trunk of Firefox currently.
First are some nifty new events that get fired if your computer has an accelerometer:
-
window.addEventListener(“MozOrientation”, function(e) {
-
/* 3 values: e.x, e.y, e.y */
-
}, true)
It works with MacBooks and on Windows and Linux with Thinkpads.
Check out this cool screencast of the orientation event in action:
They also have WebGL and CSS Transitions going in Firefox trunk now as well! There are some demos in the original blog post of WebGL + CSS3 + SVG as well as CSS Transitions + the HTML5 Video tag that are very cool (require Firefox Nightly).
Here’s an example code snippet showing how you can use CSS Transitions to change the background color of a DIV over time as well as changing the width and height of an HTML5 Video at the same time:
-
div {
-
–moz-transition-property: background-color, height, width, font-size;
-
–moz-transition-duration: 2s, 1s, 2s, 1s;
-
–webkit-transition-property: background-color, height, width, font-size;
-
–webkit-transition-duration: 2s, 1s, 2s, 1s;
-
}
-
div video {
-
–moz-transition-property: width, height;
-
–moz-transition-duration: 2s, 2s;
-
–webkit-transition-property: width, height;
-
–webkit-transition-duration: 2s, 2s;
-
}
Someone’s also put together a cool demo that puts the new accelerometer support with some SVG to create a Super Mario Kart clone:
Fonte:Ajaxian
Preload Page
The classic animated gif, or the “loading…” text, could be now easily replaced thanks to this new jQuery plug-in.

Specially suited for a page loads of images, the final result showed in this demo looks really nice and flashy.
Features:
- Preload a whole web page.
- Preload a part of the page.
- Gets all images, <img> tags and background-image of your CSS
- Easy to implement.
- Adjustable loading bar.
- Tested in Firefox, Safari, Opera, Chrome, IE7, IE8 and IE6 (script will be ignored in IE6 though).
Full post, demo, and source code, are in Gaya Design blog.
To be honest, I instantly had a thought about this technique: wasn’t the DOMContentLoaded event purpose the one to avoid people waiting a full page download before they’re allowed to interact with it? … never mind, we cannot do much in any case in front of images dedicated layouts.
Fonte:GayaDesign


