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




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
Seo Master present to you: On the weekend of December 4 and 5, hackers will gather in cities around the globe to create software solutions that make a difference.

Google, Microsoft, The World Bank and Yahoo! are inviting software developers, independent hackers and students to participate in Random Hacks of Kindness (RHoK #2) next weekend.

RHoK brings together volunteer programmers and experts in disaster response for a two-day hackathon to create software solutions that focus on problems related to disaster risk and response. It is an opportunity to meet and work with top software developers and disaster experts, to create and improve open source applications that enable communities to recover from disasters, and to possibly win prizes.

Examples of previous hacks include the “I’m OK” app from RHoK #0 in November 2009, which was used during the response to recent earthquakes in Haiti and Chile, and the landslide prediction tool “Chasm,” winner of RHoK #1 in June 2010.

RHOK will be held simultaneously in many locations around the world. The five main stages will be in Chicago, Sao Paolo, Aarhus, Nairobi and Bangalore; and there will be over a dozen satellite events in other global cities. To find a location near you, see the latest list on the RHoK website.

Join us on December 4th and 5th, and visit www.rhok.org for more information.

2013, By: Seo Master
Powered by Blogger.