Advertisement
Guest User

Example.

a guest
Feb 6th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <style>
  2.  
  3. #examplediv{
  4. position: absolute;
  5. top: 200px;
  6. left: 200px;
  7. height: 200px;
  8. width: 200px;
  9. border: 1px solid black;}
  10.  
  11. .linkactivation:hover + #divactivation{
  12. opacity: 1;
  13. }
  14.  
  15. #divactivation{
  16. -webkit-transition: all 1s;
  17. transition: all 1s;
  18. opacity: 0;
  19. left: 0px;
  20. bottom: 0px;
  21. height: 30px;
  22. width: 30px;}
  23.  
  24.  
  25. </style>
  26.  
  27. <div id="examplediv">
  28.  
  29. <a class="linkactivation">FIRST.</a>
  30. <div id="divactivation">Boo.</div><br>
  31. <a class="linkactivation">SECOND.</a>
  32. <div id="divactivation">Boo. Second.</div>
  33.  
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement