Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

Seo Master present to you: Blogger How is Blogger Tutorial Series from How We Blog. In this series, I will guide you step by step building your first blog with Blogger, spread it to the world, and then you can earn money from it.

The first post of this series:

Blogger How 1 - Register and Start Your First Blogger


Blogger (a.k.a Blogspot) is a professional blogging platform by Google. Blogger offers many professional features to its users. With Blogger, you can fully customize template and your post. Blogger is one of the best search engine optimized platform that support by Google itself. Blogger is free, fast and stable for everyone. And that's why I write tutorial about Blogger first (and Wordpress after that).

Register Google Account and Sign In 


You need a Google Account to sign in and use Blogger at http://www.blogger.com. If you don't have one, click Sign Up button at right up corner, then choose your Gmail user name (it will be your Google Account too), fill in all the field then click Next step to finish the registering.
Register a Google Account
Register a Google Account
Read more »2013, By: Seo Master



Manfaat Google Plus untuk blog dan SEO sedang menarik perhatian saya. Sudah bukan rahasia lagi bahwa Google menggunakan sinyal jejaring sosial sebagai salah satu sinyal positif untuk SEO suatu blog. Tentu saja dalam hal ini Google lebih berharap bahwa Google Plus kelak yang menjadi penyumbang terbesar sinyal itu dan bukannya facebook.



Saya punya rencana untuk bereksperimen dengan Google +
Seo Master present to you:
Add descriptions to Labels
Filter effects are a way of processing an element's rendering before it is displayed in the document. Typically, rendering an element via CSS or SVG can conceptually described as if the element, including its children, are drawn into a buffer (such as a raster image) and then that buffer is composited into the elements parent. Filters apply an effect before the compositing stage. Examples of such effects are blurring, changing color intensity and warping the image. Although originally designed for use in SVG, filter effects are a set a set of operations to apply on an image buffer and therefore can be applied to nearly any presentational environment, including CSS. They are triggered by a style instruction (the ‘filter’ property). This specification describes filters in a manner that allows them to be used in content styled by CSS, such as HTML and SVG. It also defines a CSS property value function that produces a CSS <image> value.

CSS3 Filters are a pretty exciting prospect for us Web Designers as they make effects that we typically associate with Photoshop, possible to apply in the browser with ease. Assuming across-the-board support eventually arrives, we can wave goodbye to countless annoying sprites for simple hover effects and instead, replace this tedious process with a single line of simple CSS.
The basic filters as listed in the W3C Draft are as follows: grayscale, sepia, saturate, hue-rotate, invert, opacity, brightness, contrast,blur, drop-shadow, custom.

Code: apply this hack manually by adding below CSS code just above/before ]]></b:skin> tag in your template,

Grayscale
img {
-webkit-filter:grayscale(1);
}

img:hover {
-webkit-filter:grayscale(0);
}

Saturate
img {
-webkit-filter:saturate(4);
}
img:hover {
-webkit-filter:saturate(1);
}

Sepia
img {
-webkit-filter:sepia(1);
}

img:hover {
-webkit-filter:sepia(0);
}

Hue Rotate
img:hover {
-webkit-filter:hue-rotate(360deg);
}

Invert

img {
-webkit-filter:invert(1);
}

img:hover {
-webkit-filter:invert(0);
}


Brightness

img {
-webkit-filter:brightness(-0.5);
}

img:hover {
-webkit-filter:brightness(0);
}


Hue-rotate and Animate

@-webkit-keyframes hue { 
100% { -webkit-filter:hue-rotate(360deg); }
}

img:hover {
-webkit-animation:hue 1s linear infinite;
}



Grayscale and Brightness

img { 
-webkit-filter:grayscale(1) brightness(-0.4);
}

img:hover {
-webkit-filter:grayscale(0) brightness(0);
}



Demo

Grayscale

Grayscale is a very basic effect that I think we would see a lot more of if we could achieve it with a single line of CSS rather than having to use a sprite image.

DEMO




Saturate


Sepia


Brightness



Grayscale and Brightness




2013, By: Seo Master
Powered by Blogger.