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

seo Mouse Hover Zoom Effect For Your Blogger Images - jQuery 2013

Seo Master present to you:

 

Friends, This post contain a trick to zoom your blogger images with out clarity loss. If you want to insert this effect to your blogger, Follow this post.

 

 

logo_zoom

 

 

  • Click on Templates.

 

  • Hit on Edit Html button and proceed.

 

  • Find (Ctrl+F)   ]]></b:skin> tag.

 

  • Copy and paste below code before  ]]></b:skin> tag.

 

 

/*------- Master Hacks ZOOM-OUT ZOOM-IN -------*/
.mbtzoom {
padding:5px;
position:fixed;
bottom: 35px;
right:10px;
cursor: pointer;
text-decoration: none;
border: 0px solid transparent;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.mbtzoom:hover  {
  zoom: 2;
  text-enlarge: 2;
  -moz-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
}

 

 

 

You wish to apply the zoom effect to any image you want simply use this code.

 

<a href="URL OF PAGE" class="mbtzoom"><img  width="60px" height="60px" src="IMAGE LINK" alt="back to top"  /></a>

 

  • Change Red color with your Page link and Image link.

 

 

*Make sure to Keep width and height equal to half the size of original image. For example if the image size is 100px by 100px then set width="50px" and height="50px".

 

 

……………………………..END…………………………………….

2013, By: Seo Master

seo Google’s sample OpenID relying party site 2013

Seo Master present to you:

More and more websites are enhancing their login systems to include buttons for identity providers such as Google, Yahoo, Facebook, Twitter, Microsoft, etc. Users generally prefer this approach because it makes it easier for them to sign up for a new site that they visit. However if a user already has an account at a website, and they are used to logging in with their email and password, then it is hard to get them to switch to using an identity provider.

Google has recently released a sample site that shows how a website can migrate users away from password based logins, and instead have them leverage an identity provider. This sample site incorporates many of the ideas of the Internet Identity community, as well as feedback from numerous websites who have been on the cutting edge of applying these techniques. The following video provides highlights of some elements of the user experience.

The sample site is at openidsamplestore.com, but we suggest first reading this FAQ which describes the site and has links to additional videos of some of the features. We hope website developers will use these techniques to reduce the need for passwords on their site.

2013, By: Seo Master

seo Introducing Au-to-do, a sample application built on Google APIs 2013

Seo Master present to you: Author Photo
By Dan Holevoet, Developer Relations Team

A platform is more than the sum of its component parts. You can read about it or hear about it, but to really learn what makes up a platform you have to try it out for yourself, play with the parts, and discover what you can build.

With that in mind, we started a project called Au-to-do: a full sample application implementing a ticket tracker, built using Google APIs, that developers can download and dissect.

Au-to-do screen shot

Au-to-do currently uses the following APIs and technologies:
Additional integrations with Google APIs are on their way. We are also planning a series of follow-up blog posts discussing each of the integrations in depth, with details on our design decisions and best practices you can use in your own projects.

By the way, if you’re wondering how to pronounce Au-to-do, you can say "auto-do" or "ought-to-do" — either is correct.

Ready to take a look at the code? Check out the getting started guide. Found a bug? Have a great idea for a feature or API integration? Let us know by filing a request.

Happy hacking!


Dan Holevoet joined the Google Developer Relations team in 2007. When not playing Starcraft, he works on Google Apps, with a focus on the Calendar and Contacts APIs. He's previously worked on iGoogle, OpenSocial, Gmail contextual gadgets, and the Google Apps Marketplace.

Posted by Scott Knaster, Editor



2013, By: Seo Master

seo Google Cloud Storage - more value for performance 2013

Seo Master present to you:
Author Photo By Dave Barth, Product Manager

Cross-posted with the Official Google Enterprise Blog

Earlier this week, we announced a collection of improvements across Google Cloud Platform including 36 new Compute Engine instances, Durable Reduced Availability (DRA) storage, Object Versioning, and European datacenter support. We also announced that we are reducing the price of standard Google Cloud Storage by over 20%.

We are committed to delivering the best value in the marketplace to businesses and developers looking to operate in the cloud. That’s why today we are reducing the price of Google Cloud Storage by an additional 10%, resulting in a total price reduction of over 30%. This price reduction applies to all Cloud Storage regions and the new DRA Storage.


Find out more about the new Cloud Storage pricing and sign up now to get started.

Dave Barth is a Product Manager on the Google Cloud Storage team, based in Seattle. He is idealistic about the capacity of technology to change the world.

Posted by Raj Sarkar
2013, By: Seo Master

seo How To Hack PDF Password 2013

Seo Master present to you:

Hi Guys now i show you a wonderful trick to hack PDF Password and access Secret data. Just follow below instructions.

 

pdf_logo

 

 

  • Upload PDF file and the unlocked version of the PDF without printing or copying and pasting restrictions will be displayed in a new browser window in your default PDF application.

 

 

That’s all…….

 

 

 

Leave your comments………………………..

 

2013, By: Seo Master

seo Google Gadgets going cross-platform 2013

Seo Master present to you:

For about two years now, people have been writing gadgets for Google Desktop on
Windows and for iGoogle on the web. Today, with the announcement of Google
Gadgets for Mac OS X, Google Desktop users on the Mac can now run the same
Windows and web-based gadgets in Apple's Dashboard with zero (or very few)
changes. Check it out for yourself.

Google Gadgets for the Mac uses WebKit's JavaScript engine inside Dashboard, so
the majority of gadgets just work if they're written properly. The rest can be
fixed by following a few guidelines:
  • Use JavaScript, not JScript
    • WebKit is case-sensitive, JScript is not, which can lead to problems if you assume can you do things like interchange SetTimeOut() and setTimeout().
    • Avoid JScript-only features like collections and ActiveX.
    • Avoid IE-specific DOM extensions, just as if you were writing a multi-browser web application.
  • Avoid Windows-specific APIs
    • You shouldn't assume ActiveX or certain DLLs are available. Neither WebKit nor Mac OS X supports ActiveX, so these gadgets must be rewritten.
    • Avoid Windows-only APIs such as Google Talk. These APIs are not (yet) available on Mac OS X.
  • Understand how Dashboard is different
    • The Dashboard environment is very different from a web page or the Desktop sidebar on Windows in that it comes and goes as the user activates it. Don't rely on your gadget always being visible. Your gadget won't run or update when Dashboard isn't in the foreground.
    • Don't rely on access to the file system. The security model for Dashboard doesn't allow arbitrary file access to the hard disk, although your gadget does have access to files in its own archive. Things like file pickers won't work. Note that while restricted file system access is a departure from how gadgets work on Windows, it's consistent with Dashboard's security model and the behavior of other widgets developed for Mac OS X.

For more details, see Writing a Cross-Platform Gadget, part of the Desktop Gadget API documentation.

If you're interested in developing your own gadget, visit the Gadgets API homepage. If you're already a gadget developer, download the beta today to test your gadget and ensure that it works correctly.2013, By: Seo Master

seo Google Tidak Mementingkan Frekuensi Update Posting 2013

Seo Master present to you: Google Tidak Mementingkan Frekuensi Update Posting - Pada artikel ini saya  akan membahas sedikit pengertian yang saya dapatkan dari blogjuragan tentang “google tidak mementingkan frekuensi update artikel”memang cukup akurat pernyataan itu apalagi didukung dengan beberapa sumber yang cukup terpercaya.


Mengapa google tidak mementingkan frekuensi update artikel,kalau dilihat dari beberapa blog yang hampir setiap hari artikel diperbarui tetapi SERP blog itu digoogle sangatlah kacau karena tidak banyak pengunjung artinya tidak banyak orang yang menganggap blog tersebut berharga atau bermanfaat,disisi lain ada blog yang jarang update biasanya satu bulan sekali atau bahkan tidak sama sekali tetapi bblog tersebut merajai SERP google karena banyak orang yang betah berlama-lama disana itu artinya memang google tidak mementingkan frekuensi update artikel.


Dapat kita simpulkan blog yang sedikit artikel tetapi artikel tersebut menarik banyak pembaca dan membuatnya betah disana maka blog itulah yang akan merajai SERP google,tetapi bukan berarti google jug tidak butuh update artikel,tapi minimal satu bulan update satu kali itu sudah cukup untuk mempertahankan SERP blog anda di google.
Info lebih lanjut Lihat video berikut :
Nah, bagaimana kawan artikel Google Tidak Mementingkan Frekuensi Update Posting? sudah mengerti? atau ada yang tidak setuju dengan ini? mari diskusikan tepatnya di komentar dibawah ini.

2013, By: Seo Master
Powered by Blogger.