Guest User

Untitled

a guest
Jan 20th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. #f12{
  2. width: 400px;
  3. height: 30px;
  4. left: 470px;
  5. top: 1090px;
  6. position: absolute;
  7. background: transparent;
  8. opacity: 1;
  9. filter: alpha(opacity=0);
  10. float: left;
  11. border-width: 1px;
  12. border-style: inset;
  13. z-index: 99999;
  14. }
  15. #f12:hover ~ #floater{
  16. background:url(images/flavours/f12.jpg);
  17. width: 320px;
  18. height: 320px;
  19. opacity:100;
  20. top:30%;
  21. left:0%;
  22. filter: alpha(opacity=100);
  23. float: left;
  24. position: fixed;
  25. }
  26.  
  27. #f13{
  28. width: 100px;
  29. height: 50px;
  30. left: 550px;
  31. top: 460px;
  32. position: absolute;
  33. background: transparent;
  34. opacity: 1;
  35. filter: alpha(opacity=0);
  36. float: left;
  37. -webkit-transition: 1s all;
  38. -moz-transition: 1s all;
  39. transition: 1s all;
  40. border-width: 1px;
  41. border-style: inset;
  42. }
  43. #f13:hover ~ #floater{
  44. background:url(images/flavours/f12.jpg);
  45. opacity: 100;
  46. }
  47. #floater{
  48. width: 320px;
  49. height:320px;
  50. opacity:0;
  51. position: fixed;
  52. left:0;
  53. top:30%;
  54. filter: alpha(opacity=0);
  55. float: left;
  56. -webkit-transition: 0.5s ease-in-out;
  57. -moz-transition: 0.5s ease-in-out;
  58. -ms-transition: 0.5s ease-in-out;
  59. transition: 0.5s ease-in-out;
  60. border-width: 1px;
  61. border-style: inset;
  62. filter: alpha(opacity=100);
  63. }
Add Comment
Please, Sign In to add comment