Skip to content

Instantly share code, notes, and snippets.

@manbearwolf
Created November 10, 2017 16:17
Show Gist options
  • Select an option

  • Save manbearwolf/235ce1c1c27091a7b0640716949de072 to your computer and use it in GitHub Desktop.

Select an option

Save manbearwolf/235ce1c1c27091a7b0640716949de072 to your computer and use it in GitHub Desktop.
Custom CSS3 In Blogger Posts
.custom2 img
{
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
}
.custom2 img:hover
{
-o-transition: all 0.6s;
-moz-transition: all 0.6s;
-webkit-transition: all 0.6s;
-moz-transform: scale(1.4);
-o-transform: scale(1.4);
-webkit-transform: scale(1.4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment