This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Un método sencillo de cambiar la dimensión en las imágenes de 72píxeles. | |
// Para hacer funcionar aquel código necesitas especificar los selectores a los que se le aplicarán los cambios. | |
// NOTA: cambiar 's600' por el valor deseado (Máximo 1600 píxeles y si deseas que la imagen conserve su forma cuadrada, añade -c al final del número). | |
$(document).ready( function(){ | |
$('.selector1, .selector2').each(function(){ | |
var url_imagen = $(this).attr("src").replace('s72-c','s600'); | |
$(this).attr("src",url_imagen); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Explicación: | |
// Para que pueda funcionar, deberás establecer el selector correcto en la variable editor_url que contenga el parámetro href correcto. | |
//Si te genera confusión, copia este código debajo de <data:post.body/>: | |
// <a id="post-editor" expr:href="data:post.url" style="display:none;"><data:post.title/></a> | |
$(document).keydown(function(e) { | |
if(e.which == 69 && e.ctrlKey && e.altKey) { | |
var editor_url = $("#post-title, #post-editor").attr("href"); | |
var ventana_editar = window.open(editor_url, "Editar Entrada", "width=800, height=600"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<!DOCTYPE html> | |
<html lang='es'> | |
<head> | |
<b:skin><![CDATA[]]></b:skin> | |
<link href='https://dl.dropboxusercontent.com/u/69931585/TUTORIALES/estilos.css' rel='stylesheet' type='text/css'/> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Obtener posts a partir de las feeds de Blogger | |
// Por Víctor Calderón Oyarce | |
// Para Ayuda Bloggers | |
// http://www.ayuda-bloggers.info | |
// CONFIGURACIONES INICIALES | |
var cantidad_posts = 10; // Cantidad de posts que se mostrarán | |
var caracteres_resumen = 100; // Cantidad de carácteres del resúmen | |
var tamano_imagen = 100; // Tamaño imagen en píxeles | |
var url_imagen_no_disponible = "URL IMAGEN NO DISPONIBLE"; // URL de la URL si no existe una imagen |