background preloader

Generator de sombras CSS

Generator de sombras CSS
Related:  CSS 3

Como hacer un menú de navegación adaptable a móviles Share on Pinterest Estoy seguro que mas de una vez has visto el tipo menú de Aplicación para smartphone el cual presionas un botón con 3 lineas y aparece un bonito menú por uno de los laterales, hoy en este tutorial te enseñare como hacer ese menú de navegación. El objetivo de este tutorial consiste en crear un menú de navegación para una vista de Escritorio y que ese mismo menú se visualice diferente al acceder al sitio desde un móvil, como pudiera ser una tableta ipad o un iphone. Este tipo de menús son muy utilizados en la mayoría de los sitios responsive, pero yo no te aconsejaría utilizarlo en cualquier caso, en ocasiones puedes hacer un simple menú flexible y eso ayudaría a la experiencia de usuario. Para poder hacer este menú vamos a utilizar un poco de Javascript pero sobre todo es HTML y CSS, asi que no te preocupes si no sabes JS. DEMO: Meta Viewport: Estructura HTML del menú de navegación: Estilos CSS: Código Javascript:

vertical-align The vertical-align property in CSS controls how elements set next to each other on a line are lined up. In order for this to work, the elements need to be set along a baseline. As in, inline (e.g. <span>, <img>) or inline-block (e.g. as set by the display property) elements. The valid values are: baseline - This is the default value.top - Align the top of the element and its descendants with the top of the entire line.bottom - Align the bottom of the element and its descendants with the bottom of the entire line.middle - Aligns the middle of the element with the middle of lowercase letters in the parent.text-top - Aligns the top of the element with the top of the parent element's fonttext-bottom - Aligns the bottom of the element with the bottom of the parent element's font.sub - Aligns the baseline of the element with the subscript-baseline of its parent. You can see examples of each here: A common use case is lining up an avatar with a username. #More Information

git - la guía sencilla git - la guía sencilla una guía sencilla para comenzar con git. sin complicaciones ;) por Roger Dudler (traducido por @lfbarragan y @adrimatellanes) créditos a @tfnico, @fhd y Namics disponible en english, deutsch, français, indonesian, italiano, nederlands, polski, português, русский, türkçe, မြန်မာ, 日本語, 中文, 한국어 por favor, reporta cualquier problema en github configuración Descarga git para OSX Descarga git para Windows Descarga git para Linux crea un repositorio nuevo Crea un directorio nuevo, ábrelo y ejecuta git init para crear un nuevo repositorio de git. hacer checkout a un repositorio Crea una copia local del repositorio ejecutando git clone /path/to/repository Si utilizas un servidor remoto, ejecuta git clone username@host:/path/to/repository flujo de trabajo Tu repositorio local esta compuesto por tres "árboles" administrados por git. add & commit Puedes registrar cambios (añadirlos al Index) usando git add <filename> git add . envío de cambios ramas actualiza & fusiona etiquetas guías

Modulo de las tablas HTML5 Las tablas representan una de las funcionalidades más poderosas de HTML y se le pueden dar muchos usos. Si antiguamente eran utilizadas para mostrar solamente resultados de cálculos científicos, hoy en día se puede organizar y maquetar una página Web en totalidad. Cada celda de una tabla puede contener cualquier elemento HTML, incluso otra tabla y solamente nuestra imaginación puede ser la barrera que nos pueda impedir en alcanzar la verdadera potencia de una tabla. Como hemos hablado al principio, HTML utiliza un mínimo de directivas para gestionar el flujo de contenido de una tabla: <table>, <tr> y <td>. <table border="1"> <tr> <td>cabecera</td> <td>cabecera</td> <td>cabecera</td> </tr> <tr> <td>cabecera</td> <td>cuerpo</td> <td>cuerpo</td> </tr> <tr> <td>cabecera</td> <td>pie</td> <td>pie</td> </tr> </table> La tabla que acabo de ejemplificar está formada por 3 columnas, 3 filas y 9 celdas. <caption>Titulo de la tabla</caption> Partes de una tabla Definir las filas de una tabla vs

CSS3 Minimalistic Navigation Menu Martin Angelov As you have probably heard by now, CSS3 animations are a powerful tool, which enables you to create animations which run without the need of applying additional scripting to the page. What is even better, in the next generation of browsers we will have even more powerful tools, including 3D transformations (already present in Safari). But what difference does it make for us today? So today we are making something practical – a simple CSS3 animated navigation menu, which degrades gracefully in older browsers and is future-proofed to work with the next generation of browsers. The XHTML The menu is organized as an unordered list. demo.html <ul id="navigationMenu"><li><a class="home" href="#"><span>Home</span></a></li><li><a class="about" href="#"><span>About</span></a></li><li><a class="services" href="#"><span>Services</span></a></li><li><a class="portfolio" href="#"><span>Portfolio</span></a></li><li><a class="contact" href="#"><span>Contact us</span></a></li></ul> The CSS

CSS table cell hover change background color - CSS-Tricks # March 19, 2013 at 5:42 pm Hi, I’m trying to for a CSS ‘menu’ script that when a table cell is hovered the cell background color changes. Here are 2 good examples of what I’d like, in action (note: this doesn’t reflect my personal music taste!) (It is highly preferred to have ‘cells’ that contain logos, such as amazon, iTunes, etc.) (click buy now at top of page – I’d prefer the code to not be ‘pop-up’ – instead more like the Bon Jovi page.) Just need a little push in the right direction – don’t need all buttons written out! Thanks in advance – greatly appreciated!!

Nifty Modal Window Effects A set of experimental modal window appearance effects with CSS transitions and animations. View demo Download source Today we want to share some ideas for modal window effects with you. There are infinite possibilities for transitioning the appearance of a dialog box and we wanted to provide some ideas of how to show dialog boxes and provide some inspiration. The idea is to have a trigger button (or any element) which will make a modal window appear on click using a simple transition (or animation). Please note: this only works as intended in browsers that support the respective CSS properties. There are some knows issue with using visibility/opacity for iOS < 6 Mobile Safari, so this probably won't work on older devices. The structure of the modal window consists of a main wrapper and a content division: <div class="md-modal md-effect-1" id="modal-1"><div class="md-content"><h3>Modal Dialog</h3><div><p>This is a modal window. For some effects we will also add a class to the html element.

Tip: Cambiar estilos de Checkbox y Radio Button con CSS3 Veremos una forma rápida y sencilla de cambiar los estilos de los checkbox y radio button con css3, usando el pseudo selector :checked, seremos capaces de apuntar a un elemento basándonos en su estado activo o desactivo(checked o unchecked). Creación de nuestro HTML Solo se mostrara esta técnica para un elemento checkbox, pero sera el mismo proceso para los radio button, y se podrá apreciar mejor en el demo. Comenzamos creando nuestro checkbox seguido de un label Ahora asociamos el elemento label a nuestro checkbox, esto se hace mediante el uso de for=”” y el id del checkbox También se agrego un <span> dentro del label, se vera el porque al momento de aplicar los estilos. Estilos CSS Aquí es donde empieza la diversión, lo primero que haremos, que es el motivo de este tutorial, sera ocultar el checkbox Nuestra imagen Sprite Y este el estilo completo para el css

ScrollMagic ♥ Demo Tabla Caracteres ASCII - Conversion y Equivalencias Hexa - Octal - HTML Entities La tabla ASCII (American Standard Code for Information Interchange) es un juego de caracteres creado en 1963 y publicado en 1967 para representar el alfabeto latino, otros caracteres alfanumericos y comandos para control de textos (nueva linea, tabulacion, etc) en sistemas informaticos. La codificacion esta basada en un estandard de 7 bits para la composicion de cada byte, a diferencia de estandares mas modernos que utilizan 8 bits para incorporar caracteres internacionales (como ISO-8859-1). El octavo bit en la codificacion ASCII es utilizado habitualmente como un bit de paridad para el control de errores en transferencia de datos. A diferencia de ASCII, el estandard Unicode fue creado a finales de la decada del '80 para contener en un mismo sistema de codificacion la multiplicidad de caracteres posibles para distintos idiomas, inclusive idiogramas como los utilizados en chino.

Related: