Advertisement
tommyosheawebdesign

GIF On Image Hover

Mar 5th, 2021
761
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.57 KB | None | 0 0
  1. HTML
  2.  
  3. <!-- Don't do this:
  4. <a href="../example.html" class="img-acu" title="ACU Project link"></a>
  5. -->
  6.  
  7. <div>
  8.   <div>Click on image below to go to link:</div>
  9.   <a href="https://www.google.com" title="ACU Project link">
  10.     <div class="img-acu"></div>
  11.   </a>
  12. </div>
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19. CSS
  20.  
  21. .img-acu
  22. {
  23.   float: left;
  24.   width: 250px;
  25.   height: 132px;
  26.   background:transparent url("https://i.imgur.com/7r91PY3.jpeg") center top no-repeat;
  27.   background-size: 125%;
  28. }
  29.  
  30. .img-acu:hover
  31. {
  32.   background-image: url("https://media.giphy.com/media/QMkPpxPDYY0fu/giphy.gif");
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement