Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. #blah - id of that image
  2.  
  3. #blah{ -webkit-transition: all .2s ease-in-out; }
  4. #blah:hover { -webkit-transform: scale(1.1);}
  5.  
  6. <div class="cont">
  7. <div class="img" style="background-image: url('http://good-morning.no/wp-content/uploads/2014/03/thumb1.jpg')"></div>
  8. </div>
  9.  
  10. <div class="cont">
  11. <div class="img" style="background-image: url('http://good-morning.no/wp-content/uploads/2014/03/thumb2.jpg')"></div>
  12. </div>
  13.  
  14. .cont{
  15. width: 360px;
  16. height: 360px;
  17. overflow: hidden;
  18. background-color: #000;
  19. display:inline-block;
  20. cursor: pointer;
  21. }
  22. .cont:active {
  23. opacity: 0.65;
  24. }
  25. .cont:active {
  26. -webkit-transform: scale(0.98);
  27. }
  28. .img {
  29. width: 480px;
  30. height: 480px;
  31. -webkit-transition: scale .4s ease-in-out;
  32. -webkit-transition: translate 1s ease-in-out;
  33. -webkit-transition: opacity .2s ease-in-out;
  34. opacity: 0.65;
  35. }
  36. .img:hover {
  37. -webkit-animation: anim 5s 1 ease-out forwards;
  38. opacity: 1.0;
  39. }
  40. @-webkit-keyframes anim {
  41. 12% { -webkit-transform: scale(1.1) translate(-10px, -10px) }
  42. 100% { -webkit-transform: translate(-30px, -30px) scale(1.1) }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement