web development
[icons]
http://www.templates.com/blog/40-free-website-usability-icon-sets/
[php framework]
http://www.yiiframework.com/doc/api/1.1/CForm
[GIT]
http://code.google.com/p/msysgit/downloads/list
[github]
[gitorious]
Extjs 4
http://loianegroner.com/2010/12/ext-js-4-preview/
[GIT]
[Diretrizes para webmasters
http://imasters.com.br/artigo/14669/cms/crud_com_seguranca_no_codeigniter/
Legenda em Imagens
Um efeito bonito , quando se passa o rato por cima da imagem é aparecer a sua legenda, poupa algum espaço na página e dá um efeito porreiro
HTML
CSS
.imgefeito {
margin: 0;
overflow: hidden;
float: left;
position: relative;
}
.imgefeito a {
text-decoration: none;
float: left;
}
.imgefeito a:hover {
cursor: pointer;
}
Estilização da imagem onde aparecerá o texto no estado hover, ou seja, quando o mouse estiver sobre a imagem.
.imgefeito a img {
float: left;
margin: 0;
border: none;
padding: 10px;
background: #fff;
border: 1px solid #ddd;
}
Em seguida estilizamos o texto Saiba Mais e a “caixa” da legenda que será mostrada quando passarmos o mouse sobre o texto. Perceba o uso de um comando proprietário da Microsoft, –ms-filter para o efeito funcionar no Internet Explorer 8.
.imgefeito a .mais {
position: absolute;
right: 20px;
bottom: 20px;
font-size: 1.2em;
color: #fff;
background: #000;
padding: 5px 10px;
filter:alpha(opacity=65);
opacity:.65;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; /*--IE 8 Transparency--*/
}
.imgefeito a:hover .desc{
display: block;
font-size: 1.2em;
padding: 10px 0;
background: #111;
filter:alpha(opacity=75);
opacity:.75;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; /*--IE 8 Transparency--*/
color: #fff;
position: absolute;
bottom: 11px;
left: 11px;
padding: 10px;
margin: 0;
width: 615px;
border-top: 1px solid #999;
}
.imgefeito a:hover .desc strong {
display: block;
margin-bottom: 5px;
font-size:1.5em;
}
retirado de kadunew.com
HTMl5 & CSS3
Actualmente o futuro é HTML5 e css3 aqui ficam algumas opções.
http://smashinghub.com/25-useful-html5css3-tools-cheat-sheets-and-resources.htm
Efeitos popups em js highslide
Para adicionar efeitos em javascript , imagens e texto.
http://highslide.com/
Animações sem flash jquery
Agora é fácil criar aplicações sem precisar do adobe flash instalado, basta só usar HTML e JavaScript
jCarousel
Riding carousels with jQuery
Author: Jan Sorgalla
Version: 0.2.3 (Changelog)
Download: jcarousel.tar.gz or jcarousel.zip
Licence: MIT and GPL
Documentation: http://sorgalla.com/projects/jcarousel/
jCarousel is a jQuery plugin for controlling a list of items in horizontal or vertical order. The items, which can be static HTML content or loaded with (or without) AJAX, can be scrolled back and forth (with or without animation).
Examples
The following examples illustrate the possibilities of jCarousel:
- Static Examples
- Dynamic Examples
- Carousel with dynamic content loading via JavaScript
- Carousel with dynamic content loading via Ajax
- Carousel with dynamic content loading via Ajax from a PHP script
- Carousel with dynamic content loading via Ajax from the Flickr photo stream
- Carousel with dynamic content loading via Ajax from the Flickr API
- Special Examples

