Advertisement
milkdesu

html + instructions for update bar

May 17th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. to find </style> or <body> in EDIT HTML, CTRL+F and type it in and it'll locate it for you.
  2.  
  3. 1. paste this BEFORE </style>:
  4.  
  5. #notice
  6. #notice a{
  7. display:block
  8. }
  9. #notice .updates {
  10. margin-left:-100px;
  11. margin-top:0px;filter: alpha(opacity = 0);
  12. opacity:0;-webkit-transition: all 0.5s ease-out;
  13. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  14. }
  15.  
  16. #notice:hover .updates {
  17. margin-left:0px;
  18. margin-top:0px;
  19. -webkit-transition: all 0.8s ease-out;
  20. -moz-transition: all 0.8s ease-out;
  21. transition: all 0.8s ease-out;
  22. filter: alpha(opacity = 100);
  23. filter: alpha(opacity = 100);
  24. opacity:100;
  25. }
  26.  
  27. #messaji {
  28. position:fixed;
  29. background-color:#fff;
  30. font-family:'Inconsolata';
  31. font-size:9px;
  32. width:130px;
  33. height:auto;
  34. padding-bottom:5px;
  35. border:1px solid #ddd;
  36. margin-left:175px;
  37. margin-top:-60px;
  38. text-align:center;
  39. }
  40.  
  41. #peach img{
  42. opacity:0.74;
  43. margin-top:-100px;
  44. margin-left:-10px;
  45. height:390px;
  46. position:fixed;
  47. -webkit-filter:grayscale(0%);
  48. }
  49.  
  50. #peach img:hover{
  51. opacity:0.70;
  52. -webkit-filter:grayscale(30%);
  53. }
  54.  
  55. 2. paste this AFTER <body>, put image url + text where I typed in caps:
  56.  
  57. <div id="notice">
  58. <div id="peach"><img src="IMAGE URL GOES HERE"></div>
  59. <div class="updates">
  60. <div id="messaji">
  61. <div style="background:#f5f5f5;padding:5px;padding-top:6px;margin-bottom:10px;border-bottom:1px double #ddd;text-align:center;font-size:8px;color:#888;font-family:Inconsolata;">UPDATES</div>
  62. TEXT GOES HERE
  63. <p></p></center></div>
  64. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement