Advertisement
Pavle_nis

Untitled

Mar 2nd, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <div class="hoverText">
  2. <span class="onHoverText"> Hello </span>
  3. </div>
  4.  
  5. .hoverText
  6. {
  7. display: none;
  8. position: absolute;
  9. text-align: center;
  10. font-size: 20px;
  11. top: 0%;
  12. width: 100%;
  13. height: 100%;
  14. background-color: rgba(0, 0, 0, 0.5);
  15. }
  16.  
  17. .onHoverText
  18. {
  19. position: absolute;
  20. top:50%;
  21. }
  22.  
  23. $(".img-wrapper").mouseenter(function()
  24. {
  25. $(this).parent().find(".hoverText").show();
  26. }).mouseleave(function()
  27. {
  28. $(this).parent().find(".hoverText").hide();
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement