How to add Spinning effect on Blogger Logo and Title?

How to add Spinning effect on Blogger Logo and Title?
tricks

Generally we add Logo in Blogger template for Branding our site. But by default we will able to add only static logo image there. Beside of this many Blog user don't use any logo. They just display default text I mean, Blog name and description. So this may be looks monotonous for your visitors. But by adding simple animation or spinning effect we can make it attractive. Though I have already share with you about adding hover effect on Blogger Logo but In this tutorial I will show you another different effect where a user will see a spinning effect on their Blogger logo or text title.


For see the effect a visitor must be mouse over on Logo or Blog title text and instantly the logo will spin. And if you move mouse from logo then it will again spin to get back its own position. Sounds amazing!! So please follow the below tutorial to add this amazing effect on Blogger logo or title text.

Step 1 Log in to your Blogger account and Go to your Blogger Dashboard

Step 2 Click on -> Template -> Edit HTML

Step 3 Now find ]]></b:skin> by Pressing Ctrl+F (Windows) or CMD+F (Mac)   

Step 4 And Paste the below code above/before ]]></b:skin> 


/*Tricks By http://www.bloggerspice.com*/
#header-inner{
 -moz-transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}
#header-inner:hover{
-moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

Step 5 Now simply hit the Save Template button.

After that visit your Blogger template and mouse over on logo and see your Blog logo is spinning. Again release the mouse pointer from logo and you will see again it is spinning. Hope this tutorial will help you to make your Blog more attractive. And your Blog visitors will love to see this amazing effect. thank you. 
Go Up