document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <head>
  2.     <style type="text/css">
  3.         #box {
  4.             background:url(IMAGE LOCATION);
  5.             height:RESET;
  6.             width:RESET;
  7.         }
  8.         #animate {
  9.             opacity:0;
  10.             -webkit-transition: opacity 0.25s ease;
  11.         }
  12.         #box:hover #animate {
  13.             opacity:1;
  14.         }
  15.     </style>
  16. </head>
  17.  
  18. <body>
  19.     <div id="box">
  20.         <div id="animate">
  21.             <span id="gif"><img src="IMAGE LOCATION" /></span>
  22.         </div>
  23.     </div>
  24. </body>
');