Simpsons Mail Icons | |
![]() | Contiene 7 íconos de 512x512, en formato PNG.descargar |
![]() |
Email Me Icon Set | |
![]() | Contiene11 íconos de 128x128, en formato PNG.descargar |
![]() |
Dos forma de insertar tweets en una página web |
<script src='http://embedtweet.com/javascripts/embed_v2.js' type='text/javascript'></script>
<a href="http://twitter.com/oloman/statuses/17254283321"> el tweet </a>
Creando botones sencillos para un menú |
<div id="miMenu">
<ul id="listaMenu">
<li><a href="URL_enlace1">Enlace 1</a></li>
<li><a href="URL_enlace2">Enlace 2</a></li>
<li><a href="URL_enlace3">Enlace 3</a></li>
<li><a href="URL_enlace4">Enlace 4</a></li>
</ul>
</div>
/* primero que nada, el contenedor, el rectángulo donde se mostrará el menú
#miMenu {
/* si es necesario, aquí podemos definir anchos, márgenes o fondos /*
}
/* luego, las definiciones de la lista */
ul#listaMenu1 {
/* reseteamos las propiedades por defecto /*
list-style: none;
margin: 0;
padding: 0;
/* y podemos agregar propiedades para las fuentes de los textos */
}
/* cada item de la lista */
ul#listaMenu1 li {
/* las mostraremos una al lado de la otra */
display: inline;
}
/* y la clave es definir los enlaces como bloques que floten; de ese modo, podemos agregarles porpiedades gráficas con facilidad */
ul#listaMenu1 li a {
display: block; /* esto, transforma el enlace en un rectángulo al que podemos dimensionar */
float: left; /* son bloques pero flotan, los veremos uno al lado del otro */
text-align: center; /* centramos el texto */
text-decoration: none; /* para que no se subrayen los enlaces */
margin-right: 2px; /* en este ejemplo, cada botón se separa un poco del adyacente */
/*
el tamaño podemos definirlo de varias formas, por ejemplo
height: 20px;
line-height: 20px;
width: 100px;
otra forma es usar padding y de ese modo, su tamaño es dinámico, varia según el texto */
padding: 5px 20px;
*/
padding: 5px 20px;
/* por último, los colores y los bordes */
background: #5F3222;
border-top: 2px solid #815444;
border-right: 2px solid #3D1000;
border-bottom: 2px solid #3D1000;
border-left: 2px solid #815444;
color: #EEE;
}
/* y el efecto hover donde simplemente, cambiamos esos colores */
ul#listaMenu1 li a:hover {
background: #A37666;
color: #000;
border-top: 2px solid #815444;
border-right: 2px solid #C59888;
border-bottom: 2px solid #C59888;
border-left: 2px solid #815444;
}
Las camisetas de Glennz |
Los botones para compartir de Blogger |
<b:includable id='shareButtons' var='post'> <b:if cond='data:post.sharePostUrl'> ....... </b:if> </b:includable>
<b:includable id='post' var='post'>
.......
<!-- quickedit pencil -->
<b:include data='post' name='postQuickEdit'/>
.......
<!-- share buttons -->
<div class='post-share-buttons'>
<b:include data='post' name='shareButtons'/>
</div>
<b:includable id='shareButtons' var='post' />
.post-share-buttons { display: inline-block; margin: 0 0.5em !important; vertical-align: middle; width: 106px; } .share-button { background: url("/img/share_buttons.png") no-repeat scroll left center transparent !important; display: block; float: left; height: 22px; overflow: hidden; width: 21px; } a.share-button:hover {text-decoration: none;} .share-button-link-text { left: -999px; position: absolute; } .sb-email {background-position: 0 0 !important;} a.sb-email:hover {background-position: 0 -22px !important;} a.sb-email:active {background-position: 0 -44px !important;} .sb-blog {background-position: -21px 0 !important;} a.sb-blog:hover {background-position: -21px -22px !important;} a.sb-blog:active {background-position: -21px -44px !important;} .sb-twitter {background-position: -42px 0 !important;} a.sb-twitter:hover {background-position: -42px -22px !important;} a.sb-twitter:active {background-position: -42px -44px !important;} .sb-facebook {background-position: -63px 0 !important;} a.sb-facebook:hover {background-position: -63px -22px !important;} a.sb-facebook:active {background-position: -63px -44px !important;} .sb-buzz {background-position: -84px 0 !important;width:22px;} a.sb-buzz:hover {background-position: -84px -22px !important;} a.sb-buzz:active {background-position: -84px -44px !important;}
.sb-email {display:none;} /* oculta el ícono de email */ .sb-blog {display:none;} /* oculta el ícono de blog */ .sb-twitter {display:none;} /* oculta el ícono de Twitter */ .sb-facebook {display:none;} /* oculta el ícono de Facebook */ .sb-buzz {display:none;} /* oculta el ícono de Goggle Buzz */
.post-share-buttons { display: block; margin: 0 auto !important; position: relative; top: -30px; }
<a expr:href='data:post.sharePostUrl + "&target=facebook"' expr:onclick='"window.open(this.href, \"" + data:top.shareToFacebookMsg + "\", \"height=430,width=640\"); return false;"' title='Compartir en Facebook' target='_blank' rel='nofollow'> texto/imagen Facebook </a> <a expr:href='data:post.sharePostUrl + "&target=twitter"' title='Enviar a Twitter' target='_blank' rel='nofollow'> texto/imagen Twitter </a> <a expr:href='data:post.sharePostUrl + "&target=buzz"' expr:onclick='"window.open(this.href, \"" + data:top.shareToBuzzMsg + "\", \"height=415,width=690\"); return false;"' title='Compartir con Google Buzz' target='_blank'> texto/imagen Google Buzz </a> <a expr:href='data:post.sharePostUrl + "&target=email"' title='Enviar por correo electrónico' target='_blank' rel='nofollow'> texto/imagen EMail </a>
<a expr:href='data:post.sharePostUrl + "&target=blog"' expr:onclick='"window.open(this.href, \"" + data:top.blogThisMsg + "\", \"height=270,width=475\"); return false;"' title='Escribe un blog' target='_blank' rel='nofollow'> texto/imagen Blogger </a>
monkeyFly: Mejoras para nuestro Twitter |
El error cuando no hay título en los gadgets |
<b:widget id='HTML6' locked='false' title='el COSO sin titulo' type='HTML'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<b:widget id='HTML6' locked='false' title='el COSO sin titulo' type='HTML'>
.......
<h2 class='title'>
cualquier <span>TITULO</span>
</h2>
Tabla de caracteres Unicode (continuación) |
☀ | ☀ | ☁ | ☁ | ☂ | ☂ | ☃ | ☃ |
☄ | ☄ | ★ | ★ | ☆ | ☆ | ☇ | ☇ |
☈ | ☈ | ☉ | ☉ | ☊ | ☊ | ☋ | ☋ |
☌ | ☌ | ☍ | ☍ | ☎ | ☎ | ☏ | ☏ |
☐ | ☐ | ☑ | ☑ | ☒ | ☒ | ☓ | ☓ |
☚ | ☚ | ☛ | ☛ | ☜ | ☜ | ☝ | ☝ |
☞ | ☞ | ☟ | ☟ | ☠ | ☠ | ☡ | ☡ |
☢ | ☢ | ☣ | ☣ | ☤ | ☤ | ☥ | ☥ |
☦ | ☦ | ☧ | ☧ | ☨ | ☨ | ☩ | ☩ |
☪ | ☪ | ☫ | ☫ | ☬ | ☬ | ☭ | ☭ |
☮ | ☮ | ☯ | ☯ | ☰ | ☰ | ☱ | ☱ |
☲ | ☲ | ☳ | ☳ | ☴ | ☴ | ☵ | ☵ |
☶ | ☶ | ☷ | ☷ | ☸ | ☸ | ☹ | ☹ |
☺ | ☺ | ☻ | ☻ | ☼ | ☼ | ☽ | ☽ |
☾ | ☾ | ☿ | ☿ | ♀ | ♀ | ♁ | ♁ |
♂ | ♂ | ♃ | ♃ | ♄ | ♄ | ♅ | ♅ |
♆ | ♆ | ♇ | ♇ | ♈ | ♈ | ♉ | ♉ |
♊ | ♊ | ♋ | ♋ | ♌ | ♌ | ♍ | ♍ |
♎ | ♎ | ♏ | ♏ | ♐ | ♐ | ♑ | ♑ |
♒ | ♒ | ♓ | ♓ | ♔ | ♔ | ♕ | ♕ |
♖ | ♖ | ♗ | ♗ | ♘ | ♘ | ♙ | ♙ |
♚ | ♚ | ♛ | ♛ | ♜ | ♜ | ♝ | ♝ |
♞ | ♞ | ♟ | ♟ | ♠ | ♠ | ♡ | ♡ |
♢ | ♢ | ♣ | ♣ | ♤ | ♤ | ♥ | ♥ |
♦ | ♦ | ♧ | ♧ | ♨ | ♨ | ♩ | ♩ |
♪ | ♪ | ♫ | ♫ | ♬ | ♬ | ♭ | ♭ |
♮ | ♮ | ♯ | ♯ | ♰ | ♰ | ♱ | ♱ |
✐ | ✐ | ✑ | ✑ | ✒ | ✒ | ✓ | ✓ |
✔ | ✔ | ✕ | ✕ | ✖ | ✖ | ✗ | ✗ |
✘ | ✘ | ✙ | ✙ | ✚ | ✚ | ✛ | ✛ |
✜ | ✜ | ✝ | ✝ | ✞ | ✞ | ✟ | ✟ |
✠ | ✠ | ✡ | ✡ | ✢ | ✢ | ✣ | ✣ |
✤ | ✤ | ✥ | ✥ | ✦ | ✦ | ✧ | ✧ |
❤ | ❤ | ✩ | ✩ | ✪ | ✪ | ✫ | ✫ |
✬ | ✬ | ✭ | ✭ | ✮ | ✮ | ✯ | ✯ | ✰ | ✰ | ✱ | ✱ | ✲ | ✲ | ✳ | ✳ | ✴ | ✴ | ✵ | ✵ | ✶ | ✶ | ✷ | ✷ | ✸ | ✸ | ✹ | ✹ | ✺ | ✺ | ✻ | ✻ | ✼ | ✼ | ✽ | ✽ | ✾ | ✾ | ✿ | ✿ | ❀ | ❀ | ❁ | ❁ | ❂ | ❂ | ❃ | ❃ | ❄ | ❄ | ❅ | ❅ | ❆ | ❆ | ❇ | ❇ | ❈ | ❈ | ❉ | ❉ | ❊ | ❊ | ❋ | ❋ |
❍ | ❍ | ❏ | ❏ | ❐ | ❐ | ❑ | ❑ |
❒ | ❒ | ❖ | ❖ | ❘ | ❘ | ❙ | ❙ |
❚ | ❚ | ❛ | ❛ | ❜ | ❜ | ❝ | ❝ |
❞ | ❞ | ❡ | ❡ | ❢ | ❢ | ❣ | ❣ |
❥ | ❥ | ❦ | ❦ | ❧ | ❧ | ✁ | ✁ |
✂ | ✂ | ✃ | ✃ | ✄ | ✄ | ✆ | ✆ |
✇ | ✇ | ✈ | ✈ | ✉ | ✉ | ✌ | ✌ |
✍ | ✍ | ✎ | ✎ | ✏ | ✏ |
overflow: Cuando las cosas se desbordan |
Una de las características más interesantes del diseño web es que uno no debe preocuparse por conocer previamente la dimensión de los elementos que vamos agregando. Sin embargo, algunas veces, esa ventaja se vuelve un problema si no tenemos en cuenta que si el contenido es más grande que el contenedor puede desbordarse y ocupar espacios indeseados.
Reel: Un script que ... vaya uno a saber |
Humor y comida |
![]() | ![]() |
Eggbert Casanova by Rerinha | Suicide OREO by Rerinha |
![]() | ![]() |
Vampire egg by partyeskimo | The Cola wars by caycowa |
![]() | ![]() |
OMG by Ytse80 | You’re toast by cake-monster |
Iconos sociales sólo con CSS |
<ul id="typo"> <li id="Trss"><a href="javascript:void(0);" title="Suscribirse via RSS ">RSS</a></li> <li id="Ttwitter"><a href="javascript:void(0);" title="Compartir en Twitter">Twitter</a></li> <li id="Tfacebook"><a href="javascript:void(0);" title="Compartir en Facebook">Facebook</a></li> </ul>
ul#typo { font: 0.875em/1 Arial, sans-serif; list-style: none; overflow: hidden; padding: 0; margin: 0; } ul#typo li { float: left; height: 66px; margin: 20px 20px 0 0; width:66px; } ul#typo li a { border: 1px solid transparent; display: block; height: 64px; overflow: hidden; line-height: 64px; text-decoration: none; width: 64px; text-shadow: 0 -1px 0 rgba(0,0,0,0.5); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } ul#typo li a:hover, ul#typo li a:focus, ul#typo li a:active { border-color: #000; opacity: 0.8; }
#Tfacebook a { position:relative; border-color:#3c5a98; text-transform:lowercase; text-indent:34px; letter-spacing:10px; font-weight:bold; font-size:64px; line-height:66px; color:#fff; background:#3c5a98; -moz-box-shadow:0 0 4px rgba(0,0,0,0.4); -webkit-box-shadow:0 0 4px rgba(0,0,0,0.4); box-shadow:0 0 4px rgba(0,0,0,0.4); } #Ttwitter a { position:relative; border-color:#a8eaec; text-transform:lowercase; text-indent:20px; letter-spacing:40px; font:bold 60px/1 Tahoma, sans-serif; line-height:60px; color:#76DDF8; background:#daf6f7; text-shadow: 3px 3px 1px #fff, -3px -3px 1px #fff, 3px -3px 1px #fff, -3px 3px 1px #fff; -moz-box-shadow:0 0 4px rgba(0,0,0,0.4); -webkit-box-shadow:0 0 4px rgba(0,0,0,0.4); box-shadow:0 0 4px rgba(0,0,0,0.4); /* standards version last */ background:-webkit-gradient(linear, left top, left bottom, from(#dbf7f8), to(#88e1e6)); background:-moz-linear-gradient(top, #dbf7f8, #88e1e6); background:linear-gradient(top, #dbf7f8, #88e1e6); } #Trss a { position:relative; width:60px; padding:0 2px; border-color:#ea6635; text-transform:lowercase; text-indent:-186px; font-size:64px; font-weight:bold; color:#fff; background:#e36443; -moz-box-shadow:0 0 4px rgba(0,0,0,0.4); -webkit-box-shadow:0 0 4px rgba(0,0,0,0.4); box-shadow:0 0 4px rgba(0,0,0,0.4); /* standards version last */ background:-webkit-gradient(linear, left top, left bottom, from(#f19242), to(#e36443)); background:-moz-linear-gradient(top, #f19242, #e36443); background:linear-gradient(top, #f19242, #e36443); } #Trss a:before { content:"\00a0"; position:absolute; bottom:10px; left:10px; width:12px; height:12px; background:#fff; -moz-border-radius:12px; -webkit-border-radius:12px; border-radius:12px; } #Trss a:after { content:"\00a0"; position:absolute; bottom:10px; left:10px; width:22px; height:22px; border-style:double; border-width:24px 24px 0 0; border-color:#fff; -moz-border-radius:0 50px 0 0; -webkit-border-radius:0 50px 0 0; border-radius:0 50px 0 0; }
Cargar scripts de manera dinámica |
<script type='text/javascript'> //<![CDATA[ function include(archivo) { var nuevo = document.createElement('script'); nuevo.setAttribute('type', 'text/javascript'); nuevo.setAttribute('src', archivo); document.getElementsByTagName('head')[0].appendChild(nuevo); } //]]> </script>
Tomorrow again: Otra galería experimental |
<script type='text/javascript' src='URL_tomorrowagain.js' ><script>
<script type='text/javascript'>
//<![CDATA[
... y aquí copiamos y pegamos el contenido del archivo tomorrowagain.js ...
//]]>
</script>
<style type='text/css'> #screen { /* el contenedor */ margin: 0 auto; overflow: hidden; /* el ancho y el alto debemos calcularo en funcíon del tamaño definido en panel */ height: VALORpx; width: VALORpx; } /* las imágenes */ .panel { float: left; margin: 5px; overflow: hidden; position: relative; /* este es el ancho y el alto de cada cuadrado donde se producirá el efecto */ height: VALORpx; width: VALORpx; } .imgPanel { border: none; position: absolute; text-decoration: none; } /* la imagen que veremos debajo */ #imagenREAL { display:block; margin:0 auto; /* si no queremos limitar el tamaño de las imágenes, eliminamos esto */ max-height: VALORpx; max-width: VALORpx; } </style>
<div id="screen"> <img class="panel" src="URL_imagen1"> <img class="panel" src="URL_imagen2"> <!-- y seguimos agregando etiquetas IMG con todas las que se nos ocurra mostrar --> </div> <img id="imagenREAL" src="URL_imagen1" /> <script type="text/javascript"> window.onload= function(){panel.init();} </script>
EL CSS3 en diferentes navegadores |
filter: progid:DXImageTransform.NOMBRE(valores);
-ms-filter: "progid:DXImageTransform.NOMBRE(valores)";
/* para IE, el valor varía entre 0 y 100 */
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
/* para el resto, el valor varía entre 0 y 1 */
opacity: .7;
Opacidad
Aenean eu lorem nec elit semper ullamcorper nec sed neque. Etiam sit amet turpis eros. Nullam ut felis dui. Proin ac nulla et eros semper bibendum. Quisque pharetra erat eget nunc lobortis semper metus./* para IE */
filter: progid:DXImageTransform.Microsoft.Shadow(color='#FFFFFF', Direction=135, Strength=10);
/* para Firefox */
-moz-box-shadow: 10px 10px 5px #FFFFFF;
/* para Chrome y Safari */
-webkit-box-shadow: 10px 10px 5px #FFFFFF;
/* para Opera */
box-shadow: 10px 10px 5px #FFFFFF;
filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=10, OffY=10, Color='#FFFFFF', Positive='true');
Sombras
Aenean eu lorem nec elit semper ullamcorper nec sed neque. Etiam sit amet turpis eros. Nullam ut felis dui. Proin ac nulla et eros semper bibendum. Quisque pharetra erat eget nunc lobortis semper metus./* para IE puede ser 0,1, 2 o 3 */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
/* para Firefox */
-moz-transform: rotate(180deg);
/* para Chrome y Safari */
-webkit-transform: rotate(180deg);
/* para Opera */
-o-transform: rotate(180deg);
Rotación
Aenean eu lorem nec elit semper ullamcorper nec sed neque. Etiam sit amet turpis eros. Nullam ut felis dui. Proin ac nulla et eros semper bibendum. Quisque pharetra erat eget nunc lobortis semper metus./* para IE */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#112233', endColorstr='#AABBCC');
/* para Firefox */
background-image: -moz-linear-gradient(top, #112233, #AABBCC);
/* para Chrome y Safari */
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #AABBCC),color-stop(1, #112233));
Gradientes
Aenean eu lorem nec elit semper ullamcorper nec sed neque. Etiam sit amet turpis eros. Nullam ut felis dui. Proin ac nulla et eros semper bibendum. Quisque pharetra erat eget nunc lobortis semper metus.
Loading |
Alojar casi todo tipo de archivos en SigMirror |
El widget de Panoramio |
http://www.panoramio.com/wapi/template/photo.html?opcion1&opcion2&opcion3 ...
http://www.panoramio.com/wapi/template/slideshow.html?opcion1&opcion2&opcion3 ...
http://www.panoramio.com/wapi/template/list.html?opcion1&opcion2&opcion3 ...
http://www.panoramio.com/wapi/template/photo_list.html?opcion1&opcion2&opcion3 ...
http://www.panoramio.com/wapi/template/photo.html?tag=sea
http://www.panoramio.com/wapi/template/slideshow.html?user=98350
http://www.panoramio.com/wapi/template/list.html?set=public
http://www.panoramio.com/wapi/template/photo_list.html?set=recent
http://www.panoramio.com/wapi/template/photo.html?tag=sea&bgcolor=%23101921
http://www.panoramio.com/wapi/template/slideshow.html?user=98350&opcion2&delay=1.5
http://www.panoramio.com/wapi/template/list.html?set=public&width=280&height=140&rows=2&columns=4&orientation=horizontal
http://www.panoramio.com/wapi/template/photo_list.html?set=recent&position=right&list_size=8&bgcolor=%23223344
<iframe src="la_URL_generada" allowtransparency="true" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" width="valor" height="valor"></iframe>
<iframe src="http://www.panoramio.com/wapi/template/photo.html?tag=sea&bgcolor=%23101921" frameborder="0" width="400" height="400" allowtransparency="true" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe>
<iframe src="http://www.panoramio.com/wapi/template/slideshow.html?user=98350&delay=1.5&bgcolor=%23101921" allowtransparency="true" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" width="400" height="400"></iframe>
<iframe src="http://www.panoramio.com/wapi/template/list.html?set=public&width=280&height=140&rows=2&columns=4&orientation=horizontal&bgcolor=%23101921" allowtransparency="true" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe>
<div style="-moz-border-radius:10px;-moz-box-shadow:0 0 10px #DDD inset;background-color:#234;border:2px solid #ABC;height:425px;margin:0 auto;padding:15px 15px 0;width:425px;"><iframe src="http://www.panoramio.com/wapi/template/photo_list.html?set=recent&position=right&list_size=8&bgcolor=%23223344" width="425" height="410" allowtransparency="true" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></div>
Button Maker: Ayuda para crear botones con CSS |
.button {
background: #384954;
background: -webkit-gradient(linear, left top, left bottom, from(#93BDD9), to(#384954));
background: -moz-linear-gradient(top, #93BDD9, #384954);
border-top: 1px solid #96D1F8;
color: white;
font-size: 20px;
font-family: Helvetica, Arial, Sans-Serif;
padding: 13px 26px;
text-decoration: none;
vertical-align: middle;
-moz-border-radius: 14px;
-webkit-border-radius: 14px;
border-radius: 14px;
-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
box-shadow: rgba(0,0,0,1) 0 1px 0;
text-shadow: rgba(0,0,0,.4) 0 1px 0;
}
.button:hover {
background: #28597A;
border-top-color: #28597A;
color: #bab337;
}
.button:active {
background: #719BB8;
border-top-color: #719BB8;
}
<a href="una_URL" class="button">, texto del enlace <,/a>,
color: white !important;
font-size: 20px !important;
.button {
background: #384954;
background: -webkit-gradient(linear, left top, left bottom, from(#93BDD9), to(#384954));
background: -moz-linear-gradient(top, #93BDD9, #384954);
border-top: 1px solid #96D1F8;
color: white;
display: block;
font-size: 20px;
font-family: Helvetica, Arial, Sans-Serif;
height: 50px;
line-height: 50px;
position: relative;
text-align: center;
text-decoration: none;
vertical-align: middle;
width: 125px;
-moz-border-radius: 14px;
-webkit-border-radius: 14px;
border-radius: 14px;
-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
box-shadow: rgba(0,0,0,1) 0 1px 0;
text-shadow: rgba(0,0,0,.4) 0 1px 0;
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#FF93BDD9', EndColorStr='#FF384954');
}
.button:hover {
background: #28597A;
border-top-color: #28597A;
color: #bab337;
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#0093BDD9', EndColorStr='#00384954');
}
.button:active {
background: #719BB8;
border-top-color: #719BB8;
}
Agregar Reply a los comentarios |
<span class='comment-reply'> <a expr:href='"https://www.blogger.com/comment.g?blogID=NUESTRO_ID&postID=" + data:post.id + "&isPopup=true&postBody=%40%3C%61%20%68%72%65%66%3D%22%23" + data:comment.anchorName + "%22%3E" + data:comment.author + "%3C%2F%61%3E#form"' onclick='javascript:window.open(this.href, "bloggerPopup", "toolbar=0,location=0,statusbar=1,menubar=0,scrollbars=yes,width=400,height=450"); return false;'>[Reply to comment]</a> </span>
<data:comment.author/>
<dd class='comment-footer'> PUEDE AGREGARSE ACÁ <span class='comment-timestamp'> <a expr:href='"#comment-" + data:comment.id' title='comment permalink'><data:comment.timestamp/></a> <b:include data='comment' name='commentDeleteIcon'/> </span> PUEDE AGREGARSE ACÁ </dd>
%40%3C%61%20%68%72%65%66%3D%22%23 es el equivalente de @<a href="# data:comment.anchorName es la URL del comentario a responder %22%3E es el equivalente de "> data:comment.authores el nombre del comentarista a quien se responde y %3C%2F%61%3E es el equivalente de </a>
.comment-reply {} .comment-reply a {} .comment-reply a:hover {}
Contenedores y contenidos: Opacidad |
<style type="text/css"> #ejemplo1 { background: transparent url(URL_imagen) no-repeat 50% 0; color: #FFF; height: 280px; margin: 20px auto; padding: 20px; text-align: center; width: 420px; filter: alpha(opacity=40); opacity: 0.4; } #textoejemplo1 { background-color: #ABC; padding: 5px; } </style> <div id="ejemplo1"> <div id="textoejemplo1"> ....... un texto cualquiera ....... </div> </div>
<div style="position: relative;"> <div style="position: absolute; left: 20px; top: 10px;"> ... </div> <div style="position: absolute; bottom:10px; right: 20px;"> ... </div> </div>
<style type="text/css"> #ejemplo2 { color: #FFF; height: 320px; margin: 20px auto; overflow: hidden; position: relative; text-align: center; width: 420px; } #internoejemplo2 { background: transparent url(URL_imagen) no-repeat 50% 0; height:320px; width:420px; filter: alpha(opacity=40); opacity: 0.4; } #textoejemplo2 { background-color: #ABC; padding: 5px; position: absolute; top: 20px; left: 10px; overflow: hidden; } </style> <div id="ejemplo2"> <div id="internoejemplo2"></div> <div id="textoejemplo2"> ....... un texto cualquiera ....... </div> </div>
Buenos Aires
Argentina
Nacido en el tercer mundo. Un santo varón. Buenos Aires. Los elefantes. Las golondrinas de Plaza de Mayo. Me chupo el dedo.
El tiempo es veloz. ¿No ves que ya no somos chiquitos? Despedida de la infancia. Todo es efímero. Juguetes perdidos. Dime quién me lo robó. Aprendizaje.
Soy un hippie. Rutas argentinas. Sobredosis de TV. Raros peinados nuevos. Más de cien mentiras. Delirium tremens.
Ciudad de pobres corazones. El karma de vivir al sur. Mundo de quimeras. Oh Dios, ¿Qué puedo hacer?
Cuando era más joven. Los mayores del mundo. Botas locas. Rejas electrificadas. Cerca de la revolución. Contra todos los males de este mundo. La casa desaparecida. Tumbas de la gloria. Vencedores vencidos. Carguen, apunten, fuego. Estás frito angelito. A lo mejor aún te acuerdas.
Ah, te vi entre las luces. Muchacha. Amor se llama el juego. Juego de seducción. Mi genio amor. Prométeme que nunca me dirás adiós. Pequeñas delicias de la vida conyugal. Toda la vida tiene música hoy. Es hora de levantare, querido (dormiste bien?).
Resumiendo.
Mi sueño de hoy. La sed verdadera. La búsqueda de la estrella. Todos juntos. ¡Ah! Basta de pensar.
Esto es to-to-todo amigos.
CONTRAER ARCHIVOS |
|